Doc to PDF/A

Hello.

Do you have ability to convert doc file to pdf/a format via Aspose.Words? How can I do this?

Thanks advance.
Alex Shloma

Hi
Thanks for your request. You can try using the following code to set Pdf/A-1b compliance level:

Document doc = new Document("C:\\Temp\\in.doc");
PdfSaveOptions options = new PdfSaveOptions();
options.Compliance = PdfCompliance.PdfA1b;
doc.Save("C:\\Temp\\out.pdf", options);

But currently Aspose.Words does not support “PDF/A-1a” compliance during PDF export. Your request has been linked to the appropriate issue. You will be notified as soon as it is supported.
Please see the following link for more information:
https://reference.aspose.com/words/net/aspose.words.saving/pdfcompliance/
Best regards,

Hi.

Thank you for quick answer.
I understood about Aspose.Words. But what about Aspose.Pdf (https://docs.aspose.com/pdf/net/convert-pdf-to-pdfa/). Can I save to common pdf with Aspose.Words SaveToPdf method, and after this open pdf via Aspose.Pdf and save as pdf/a?

Regards,
Alex Shloma

Hi Alex,
Thanks for our request. You cannot achieve this with Aspose.Pdf because Aspose.Pdf does not allow opening existing PDF documents. Maybe, you can achieve this using Aspose.Pdf.Kit. To make sure, please ask in Aspose.Pdf.Kit forum. My colleagues will answer you shortly.
Best regards,

Ok. Thanks for help.

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.
(76)