Word to PDFA-1a

I’m using Aspose Words.NET v10.8. I would like to convert a Word document to PDFA-1a file.
Dim doc As Document = New Document(“test.doc”)
Dim license As License = New License()
license.SetLicense(“Aspose.Total.lic”)
Dim opt As PdfSaveOptions = New PdfSaveOptions()
opt.Compliance = PdfCompliance.PdfA1b
doc.Save(Me.Response, “test.pdf”, ContentDisposition.Attachment, opt)

PdfCompliance doesn’t have an option for PDFA1a. So how do I go about creating a PDFA1a file?

Hi Cosaundra,

Thank you for your interest in Aspose.Words. Unfortunately, currently, Aspose.Words does not support converting to PDF/A-1a compliance. But we surely add this feature in one of future versions and immediately let you know once it is available. Cannot give you a solid estimate, unfortunately.


Thanks for getting back to me. We do have a license for Aspose Total. Is there a way to convert the PDF file generated to PDFA1a? I’m confused about the new features listed for Aspose PDF 6.6 PDFNEWNET-26321 PDF to PDF/A-1a Conversion.

Hi Cosaundra,


Thanks for your inquiry. I am afraid, I could not figure out its availability within Aspose.Words. For more details regarding listed feature PDF 6.6 PDFNEWNET-26321 PDF to PDF/A-1a Conversion, i am transferring this thread to Aspose.Pdf forum.

Hi Cosaundra,

Thanks for using our products.

You can convert PDF document to PDF/A-1A with below mentioned code using Aspose.Pdf for .NET v6.6. For more details, please visit: Convert PDF File to PDF A 1a and PDF A 1b Compliant PDF

[C#]

//open document
Document pdfDocument = new Document("input.pdf");

//Convert to PDF/A compliant document
pdfDocument.Validate("log.xml", PdfFormat.PDF_A_1A);
pdfDocument.Convert("log.xml", PdfFormat.PDF_A_1A, ConvertErrorAction.Delete);

//save output document
pdfDocument.Save("output.pdf");

Please feel free to contact support in case you required any further assistance.

Thanks & Regards,

The issues you have found earlier (filed as WORDSNET-2356) have been fixed in this .NET update and this Java update.


This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(11)