4

I have been doing dynamic PDF creation via ASP.net for some time -- in the form of HTML to PDF conversion. It works well for us, but we have accessibility requirements from the State to make everything is accessible. For static PDFs, we simply "tag" the files manually using Adobe's accessibility tools. Of course this does not work for dynamically created files. PDFs that I create dynamically fail the Acrobat Pro Accessibility test.

Does anyone have any ideas about create PDFs dynamically in ASP.net, but producing PDFs that are tagged and can pass the Adobe Accessiblity test? I have researched many components, but none that I have found support tagging.

Thanks.

Bryan Lewis
  • 5,629
  • 4
  • 39
  • 45

1 Answers1

3

I would look seriously at iText. AFAIK, this is the definitive library for creating dynamic PDF's, for Java and .NET.

You will need the book iText in Action.

Here's a quote from iText in Action on accessibility:

"You can use iText to create a document that passes all the criteria that are listed in Section 508."

saille
  • 9,014
  • 5
  • 45
  • 57
  • Thanks. I think I had reviewed iText once before but did not see the sections on accessibility. I will definitely go pick up a copy of that book. – Bryan Lewis Feb 07 '11 at 15:29