Hey everyone,
currently we’re having a problem with converting PPTX files to PDF files. Bar charts that looked fine on the original Presentation file are looking a bit glitched on the generated PDF. I don’t see that we’re doing anything special and i also dont see what else we could do here.
Here’s the code we’re using:
PdfOptions options = new PdfOptions(); options.setSaveMetafilesAsPng(true); options.setTextCompression(PdfTextCompression.Flate); options.setCompliance(PdfCompliance.Pdf15); ByteArrayOutputStream pdfOutputStream = new ByteArrayOutputStream(); presentation.save(pdfOutputStream, SaveFormat.Pdf, options);
We’re currently using aspose slides for java 18.12. i also tested it with aspose slides 19.10 with the same results.
I hope someone can help me.
Thanks in advance.