Do the PDFs created follow the 2.0 standard?

Hi everyone,

I’m new to the forums and I’m having some issues with some PDF documents created from ASPOSE. I’m just wondering if the PDF documents created form the Aspose API’s follow the PDF standrad set by the International Organization for Standards?

Any information is helpful, cheers.

Hi there,

Thanks for your inquiry. Please note that Aspose.Words mimics the same behavior as MS Word does. It means that if you convert Word document to Pdf using MS Word, you will get the same output.

Any document loaded into Aspose.Words DOM can be converted to PDF that conforms to the PDF 1.5, PDF/A-1b or PDF/A-1b specification. Aspose.Words provides one of the highest fidelity Word document to PDF conversion around. Many document features are exported to PDF exactly as how they appear in the original document.

Could you please attach your input Word document along with issue detail here for testing? We will investigate the issue on our side and provide you more information.

Hi Tahir,

Thanks for getting back to me so quickly!

The issue isn’t so much with the output, because it looks fine. However when using my PDF Viewer Nitro Pro 10, and even some cases of Adobe the file will lag, hang, and the circle will keep spinning. Please see link below:

https://www.dropbox.com/s/61usteh2ytzyq5n/8305434_3.pdf?dl=0

It would also be good if you could provide a file created by Aspose.Words so I can see if it behaves the same way. I look forward to hearing from you.

Best,
sLibs

Hi there,

Thanks for your inquiry. We have opened the shared Pdf in Adobe Acrobat XI and have not found any issue. Please use latest version of Aspose.Words for .NET 16.11.0 to convert Word document to Pdf. You may share your input Word document with us. We will convert it and share the output Pdf with you. Please use following code example to convert Word document to Pdf.

Document doc = new Document(MyDir + "in.docx");
doc.Save(MyDir + "Out v16.11.0.pdf");