Dear Team,
I have issues in converting the docx into Pdf and i have tested 7 files. The output varies in all 7 Pdf files.
Currently using Aspose Version Word 19.8 and Pdf version 19.7 and jdk version is 1.8
Attached input samples of issued Pdf .
Sample:
issue.zip (9.2 MB).
Code:
String dataDir =" " ;
String outputPath =" ";
Document doc;
doc = new Document(dataDir);
com.aspose.words.PdfSaveOptions opts = new com.aspose.words.PdfSaveOptions();
opts.getDownsampleOptions().setDownsampleImages(false);
doc.save(outputPath, opts);
Thanks…