vote up 2 vote down star
1

Do you know of any free libraries to read PDFs in PHP, the built in PDF functionality is only for rendering PDF output.

flag

5 Answers

vote up 5 vote down

Once again, Zend Framework strikes : Zend_Pdf is a PDF (Portable Document Format) manipulation engine. It can load, create, modify and save documents. Thus it can help any PHP driven application to dynamically create PDF documents by modifying existing templates or generating new ones from scratch. [...]

link|flag
Please note, as with most stuff in Zend Framework, Zend_Pdf is fairly easy to use stand alone without the requirement of the complete Zend Framework. – stefpet Jan 30 at 22:12
le sigh, i checked it out and it looked promising, then i tried to work with one of the sample PDFs for the project I need it for and the Zend Framework choked :( – mike Jan 30 at 22:26
vote up 3 vote down

Once again, Zend Framework strikes : Zend_Pdf is a PDF (Portable Document Format) manipulation engine

Don't forget that Zend Pdf is appliacable to use in NON-Zend environment. Most of Zend componemts are easy pluggable to any PHP application.

link|flag
vote up 1 vote down

If your webserver is Unix, use the pdftotext utlity to dump the PDF to text, then display it how you want it. It's not going to have the formatting, but the text will be available.

link|flag
vote up 1 vote down

You can use FPDI to read pdf and translate them in fpdf

link|flag
vote up 0 vote down

You can use phpLiveDocx to convert PDF, DOC, DOCX, RTF etc to TXT. For details see http://www.phplivedocx.org

link|flag

Your Answer

Get an OpenID
or

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