I have some free C# code to parse PDF files, which I downloaded.
I have written code using these classes to extract information about the form fields, and generate a new PDF with the form fields populated.
Now I've discovered that it doesn't work with new PDF's, because new PDF's have streams where the old formats had plain text. I don't have the time to study the PDF format documentation and write my own PDF stream parser, so I'd like to know if anyone knows of a library or classes that I can use from C# / .Net.
Before you say "Use iTextSharp", the problem with iTextSharp is the license. I need code that can be used in commercial software. If you're unsure about the license, let me know anyway.
Thanks!