Showing arrow icons while exporting the ppt to Thumbnail and PDF
Please find the attachments
Documents.zip (4.1 MB)
Showing arrow icons while exporting the ppt to Thumbnail and PDF
Please find the attachments
Documents.zip (4.1 MB)
@anantutkpd,
Thank you for contacting support.
Could you please point out which Aspose.Slides library you used?
OS: Ubuntu
Library: Aspose slides - Python via .Net
PDF Export:
pdfOptions = slides.export.PdfOptions()
# Sets the Jpeg quality
pdfOptions.jpeg_quality = 100
# Sets the behavior for metafiles
pdfOptions.save_metafiles_as_png = True
pdfOptions.sufficient_resolution = 100
# Sets the text compression level
pdfOptions.text_compression = slides.export.PdfTextCompression.NONE
# Defines the PDF standard
pdfOptions.compliance = slides.export.PdfCompliance.PDF15
presentation.save(
test.pptx,
slides.export.SaveFormat.PDF,
pdfOptions,
)
Thumbnail export:
with open(file_name, 'wb') as file:
# setting svg export params
svgOptions = slides.export.SVGOptions()
svgOptions.vectorize_text = True
svgOptions.jpeg_quality = 100
svgOptions.pictures_compression = 3
slide.write_as_svg(file, svgOptions)
@anantutkpd,
I reproduced the problem with the white arrow appearing in the upper left corner when converting the presentation to PDF.
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): SLIDESPYNET-86
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.