Does Aspose.Words for Java support saving as PDFA 1/A or U/A?

I have been searching on these terms and I haven’t found anything definitive that I can create a PDFA 1/A compliant document from an existing DOCX document assuming my DOCX document is set up correctly.

Thanks.

@sherter,

Thanks for your inquiry. Aspose.Words supports the compliance level PDF/A-1a standard. You can set the compliance level of PDF using PdfSaveOptions.Compliance property. Aspose.Words also supports PDF/A-1b standard. Please check the following code example. Hope this helps you.

Document doc = new Document(MyDir + "in.docx");
PdfSaveOptions options = new PdfSaveOptions();
options.Compliance = PdfCompliance.PdfA1a;
doc.Save(MyDir + "18.7.pdf", options);

Thanks for the update.