We are looking at for PDF for .Net tool but have a couple of questions.
- Specifically what we are trying to accomplish is the take PDF documents generated by SSRS Reporting Server which are NOT ADA Compliant and make then ADA Compliant. I believe this is what you call UA Compliant (but I am not sure)
- I found methods in your api to validate the compliance, and even tried the convert method, but the pdf that is output is still not tagged and not compliant.
Is this possible using your PDF for .Net?
@BBonser
Yes, Aspose.PDF for .NET allows conversion to PDF/UA compliant PDFs. However, in case you are facing some issue with output like it is not compliant. Would you please share the respective input PDF document as sample. We will test the scenario in our environment and address it accordingly.
I have attached the pdf I am trying to convert.
Also, here is the code I have done in my test.
Aspose.Pdf.License license = new Aspose.Pdf.License();
license.SetLicense("C:\\Reports\\Aspose.Pdf.lic");
Aspose.Pdf.Document doc = new Aspose.Pdf.Document("C:\\Reports\\Expenditure Budget Summary.pdf");
doc.SetTitle("Expenditure Budget Summary");
bool complieant = doc.Validate("c:\\Reports\\logfile.xml", Aspose.Pdf.PdfFormat.PDF_UA_1);
doc.Convert("C:\\Reports\\conversion.log", Aspose.Pdf.PdfFormat.PDF_UA_1, Aspose.Pdf.ConvertErrorAction.Delete);
doc.Save("C:\\Reports\\Expenditure Budget Summary2.pdf");
Expenditure Budget Summary.pdf (134.1 KB)
@BBonser
Would you please share a screenshot of compliance issues from the tool where you are validating the resultant PDF for PDF/U compatibility.