Hi there,
Is it possible to create a PDF (PDF/a-1B format) using Aspose.Words in java?
Thank you.
Best,
RMRodrigues.
Hi there,
Hi Rui,
Document doc = new Document(getMyDir() + “in.docx”);
PdfSaveOptions opts = new PdfSaveOptions();
opts.setCompliance(PdfCompliance.PDF_A_1_B);
doc.save(getMyDir() + “out.pdf”, opts);