Hi!
We use aspose-words-13.9.0 for Java and very simple code to convert *.docx to *.pdf
public static void convertToPdf() throws Exception{
final License license = new License();
license.setLicense(PATH_TO_LICENSE);
Document doc = new Document(PATH+“01 - original.docx”);
PdfSaveOptions saveOptions = new PdfSaveOptions();
doc.save(PATH + “02 - converted.pdf”, saveOptions);
}
all works fine except when MS Word document contains diagram with data series captions. In result pdf these captions mixes with diagram shape. Original and converted files are attached.
Any suggestions or workarounds?
I really appreciate any help you can provide.