Hi,
Please see the following sample code, when Aspose convert the "figdoc.docx" , it lose the image in the file.
File converted = File.createTempFile("aspdf-", ".pdf");
Document doc = new Document("C:\\tmp\\figdoc.docx");
doc.getChildNodes(NodeType.COMMENT, true).clear();
File dotdoc = File.createTempFile("aspdf-", ".doc");
doc.save(dotdoc.getAbsolutePath(), SaveFormat.DOC);
doc = new Document(dotdoc.getAbsolutePath());
doc.save(converted.getAbsolutePath(), saveOptions);
Thanks for the help!
Ruhong