Hi all, we have a problem with Aspose word 19.5 on java 17.
We have an ODT document that contains an OpenOffice formula (OLE object).
We try to convert the ODT to multiple formats PDF, DOCS, RTF.
After the conversion we have the same formula rendered two times in the resulting document, the same for all the output format.
To convert in PDF we use the code
ByteArrayOutputStream convertedOutputStream = new ByteArrayOutputStream();
doc = new Document(odtInputStream);
PdfSaveOptions options = new PdfSaveOptions();
options.setCompliance(PdfCompliance.PDF_A_1_A);
doc.save(convertedOutputStream, options);
Is there a way to avoid with some configuration ? Is it a know issue maybe already fixed ? In which version ?
Thank you for the support
Antonio