line 199 of PRTokenizer

        int idx = str.indexOf("%PDF-1.");

is unnecessarily restrictive. We have encountered otherwise valid PDFs (that Adobe Reader is able to open).

The line can be changed to

        int idx = str.indexOf("%PDF-");

with no adverse affects.

We have found some PDF generation software that uses a %PDF-0.0

Thanks.
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions
Buy the iText book: http://itext.ugent.be/itext-in-action/

Reply via email to