WORD to PDF/A

Hi all,

I've tested the Aspose.Words to convert mym very complicated MSOffice Word document to PDF.

Aspose.WORD did the work very well like no one other library did in maintain the document layout intact.


But, the final decision to buy it is:
Is Aspose.Words capable to convert that Office Document to PDA/A?

--I;ve tried to findou it on google but I didn't find a solution.


Aspose team, can you show me a code snipet to open Save a Word format to PDA/A using Aspose.Words or any other library of Aspose family?

Remember, I have more than 200k documents, Is not a good ideia to have to interact with the document (handle objects and classes) to open and save a .doc/rtf to PDF/A.

Thankyout very much!

Hi Klyff,


Thanks for your interest in Aspose.Words for Java. Yes, you can meet this requirement using the following code:
Document doc = new Document(getMyDir() + “input.docx”);
PdfSaveOptions opts = new PdfSaveOptions();
opts.setCompliance(PdfCompliance.PDF_A_1_A); // or PDF_A_1_B
doc.save(getMyDir() + “15.12.0.pdf”, opts);
Hope, this helps.

Best regards,

Thank you very much!

It worked perfectly!

So, i have one more question, but I think is better a new one post.

Thank you very much!!!