Hello!
I use Aspose.Slides for Java to convert odp-files to PDF/A. It worked with Aspose.Slides 20.9, but using the new version 20.10 the resulting pdf ony contains only black bars.
Code:
LoadOptions loadOptions = new LoadOptions(LoadFormat.Odp); Presentation document = new Presentation(new ByteArrayInputStream(this.sourceContent), loadOptions); PdfOptions saveOptions = new PdfOptions(); saveOptions.setCompliance(PdfCompliance.PdfA1b); document.save("odpTest_converted.pdf", SaveFormat.Pdf, saveOptions);
Attached is a zip with the input file and output file:odp.zip (55.6 KB)