I’m exporting PPTX to PDF using
slidesApi.convert_and_save(file, "PDF", outputFile, None, None, None, None, options)
Options is defined in order to generate the highest possible image quality in the PDF
options = PdfExportOptions()
options.jpeg_quality = 100
options.sufficient_resolution = 10000
options.apply_image_transparent = True
options.embed_full_fonts = False
In Feb 2023, it worked well, generating files with 4Mo size in my case.
I’m reusing my code, and now the same file is ~800ko, and image quality is pretty poor.
Has the API/service recently evolved? I haven’t find anything about this?
What should I do to get the highest possible PDF image resolution?