How to extract text from the PDF document using PHP?

(I can't use other tools, I don't have root access)

I've found some functions working for plain text, but they don't handle well Unicode characters:

http://www.hashbangcode.com/blog/zend-lucene-and-pdf-documents-part-2-pdf-data-extraction-437.html

link|improve this question

80% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Download the class.pdf2text.php @ http://pastebin.com/hRviHKp1 or http://www.phpclasses.org/browse/file/31030.html (register required)

Code:

include('class.pdf2text.php');
$a = new PDF2Text();
$a->setFilename('Videographer_RFP.pdf'); //grab the test file at http://www.newyorklivearts.org/Videographer_RFP.pdf
$a->decodePDF();
echo $a->output(); 

Output:

Videographer Request for Proposals Introduction and Mission New York Live Arts strives to create a robust framework in support of the nation's dance and movement-based artists through new approaches to producing, presenting and educating. Our programs support individual artists at all stages of their careers, encouraging experimentation and rigor. New York Live Arts is located at 219 West 19th Street in New York City and is led by Bill T. Jones as Executive Artistic Director

The class doesn't work with all pdf's I've tested, give it a try and you may get lucky :)

link|improve this answer
feedback

Have you seen this?

http://php.livejournal.com/295413.html

link|improve this answer
Looks like the same functions I posted in the question. – Sfisioza Aug 9 '11 at 17:09
If you scroll all the way to the bottom of the page, you will see added encoding code within the comments section (last comment) which helps if you're using PHP 5. – DeviantSeev Aug 9 '11 at 17:18
I've tested the code in php.livejournal.com/295413.html and it doesn't work. – Tuga Aug 9 '11 at 18:35
feedback

Your Answer

 
or
required, but never shown

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