Thumbnails and PDF Export Showing Unwanted White Arrow Icon in Python

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?

@andrey.potapov

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.

The issues you found earlier (filed as SLIDESPYNET-86) have been fixed in Aspose.Slides for Python 23.6 (Windows, Linux, macOS).
You can check all fixes on the Release Notes page.
You can also find the latest version of our library on the Product Download page or PyPI.

The issue is not resolved in 23.7.0. Still present in thumbnail export.
See the attachment.
image.jpg (65.3 KB)

@anantutkpd,
With Aspose.Slides for Python 23.7, I was unable to reproduce the problem with the PowerPoint presentation file you provided earlier.
output.zip (4.5 MB)

Could you please share the presentation you used this time?

However, we are encountering these problems specifically when attempting to export in PNG and SVG formats. It’s important to note that we are currently utilizing the most up-to-date version of Aspose Slides (Python) for this process.

@anantutkpd,
Thank you for the additional information. It will be great if you share the presentation for which you got the incorrect results mentioned here. Then we will check the problem shortly and will do our best to resolve the issue.

Here is the presentation and the thumbnail.
Arrow thumbnail and presentation.zip (4.2 MB)

@anantutkpd,
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-113

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.