Hi I would like to understand if there is the possibility to automate a massive PDF to PDF.UA conversion, which is the right ASPOSE product and if there are any code samples to test.
Thanks
You please use the below code snippet to convert PDF to PDF/UA:
Aspose.Pdf.Document pdfDoc2 = new Aspose.Pdf.Document(dataDir + "input.pdf");
pdfDoc2.Convert(dataDir + "log.xml", PdfFormat.PDF_UA_1, ConvertErrorAction.Delete);
pdfDoc2.Save(dataDir + "tagged.pdf");