PDF/A files

Hi, can i convert .doc to PDF/A files using ASPOSE

Hi Daniel,


Thank you for your interest in Aspose.Words.

Sure, you can specify the PDF standards compliance level to PdfA1b during rendering your Word document to PDF format. Here is the simple code snippet to achieve this:
DocumentBuilder builder = new DocumentBuilder();
builder.writeln(“Hello World”);

PdfSaveOptions options = new PdfSaveOptions();
options.setSaveFormat(SaveFormat.PDF);
options.setCompliance(PdfCompliance.PDF_A_1_B);

builder.getDocument().save(“C:\test\out.pdf”, options);

In this case, the output PDF file will comply with the PDF/A-1b standard. PDF/A-1b has the objective of ensuring reliable reproduction of the visual appearance of the document.

Best regards,