Hi,
When converting a word document using Aspose with ‘ExportDocumentStructure’ to true, I noticed the output file is 20 times larger than the pdf created using MS Word under the same setting.
Code:
Document doc = new Document(@“test.docx”);
var saveOption = new PdfSaveOptions();
saveOption.ExportDocumentStructure = true;
saveOption.Compliance = Aspose.Words.Saving.PdfCompliance.PdfA1b;
doc.Save(@“AsposeOutput.pdf”, saveOption);
The output pdf files from Aspose vs. Word is 7100KB vs. 379KB.
I’ve attached the .docx file and the two pdf output files for your reference. Could you please have a look into this?
Thanks
setting.png (46.3 KB)
testfiles.zip (1.3 MB)