Check if document complies with PDF/A-1a

Hello,

Is there a way to check if a document complies with PDF/A-1a format?
I know there’s a isPdfaCompliant method in ADocument.class but it only checks if a document complies with PDF/A, not specifically PDF/A-1a.

Thanks!

@oriz,

At the moment there is no method to verify that specific compliance.

You can convert the document if necessary.

var complaince = doc.Convert(“output.pdf”, PdfFormat.PDF_A_1A, ConvertErrorAction.Delete);