vote up 2 vote down star

There doesn't appear to be any Perl libraries that can open, manipulate, and re-save PDF documents that use the newer PDF version (1.5 and above I believe) that use a cross-reference stream rather than table. Does anyone know of any unix/linux-based utilities to convert a PDF to an older version? Or perhaps there's a Perl module in CPAN I missed that can handle this?

flag

3 Answers

vote up 6 vote down

Done! An hour ago, I uploaded CAM::PDF v1.50 to CPAN. It now supports PDF v1.5 compressed object streams and cross-reference streams. I've tested it with a few PDF files that I found online, but I'd sure appreciate feedback (good or bad).

link|flag
vote up 4 vote down

I'm working on it! I'm the CAM::PDF author and I've coded about a third of the support for the new crossref syntax. Donations would help (code, tests or dollars) because my bottleneck is free time...

link|flag
FYI, I finished and published this open-source solution. See search.cpan.org/dist/CAM-PDF – Chris Dolan Jan 7 '09 at 5:16
vote up 1 vote down

I would try running it through ghostscript with appropriate parameters.

Something like gs -dBATCH -dNOPAUSE -sDEVICE=pdfwriter -dCompatibilityLevel=1.2

link|flag
Note this will also lose things such as transparency information. – danio Sep 18 '08 at 13:32
Also, it will flatten out any text in the file into vector paths, so the resulting PDF is worthless if you want to be able to futher edit the text in a vector graphics or DTP program that can import PDFs. – Aristotle Pagaltzis Sep 18 '08 at 13:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.