PDF/UA-2

Hi,
when will it be possible to convert Word files to PDF/UA-2.
Best regards

@uqjp You can convert documents to PDF UA2 using the following simple code:

Document doc = new Document("C:\\Temp\\in.docx");
    
PdfSaveOptions opt = new PdfSaveOptions();
opt.setCompliance(PdfCompliance.PDF_UA_2);
    
doc.save("C:\\Temp\\out.pdf", opt);

Thank you!

Best regards

1 Like