up vote 1 down vote favorite
1
share [g+] share [fb]

how can I open a PDF file and read some of it's contents with Python (this language is preferred, however Ruby, Perl or PHP are fine too) (in case it is recognized (not just an image)) or report that it's impossible without OCR? TIA

Update: thanks for the solutions, I'm sure some of them will suit me fine.

@RichH, I have a pdf file, and don't know whether it is image- or text-based. I'm looking for a tool to help me find that out and in case it's text-based extract some of it's contents.

link|improve this question

Are they image PDF files or a text PDF files (you can find out by trying to copy the text out manually)? What do you want to read? Text? Images? Layout? You may want to reword your question too - I didn't understand the second half. – RichH Nov 8 '09 at 20:07
1  
This link can help you: stackoverflow.com/questions/25665/…. And it's its contents ;-) – RedGlyph Nov 8 '09 at 20:13
feedback

4 Answers

up vote 0 down vote accepted

Google is your friend.

http://pybrary.net/pyPdf/

link|improve this answer
That looks to let you merge and handle page level page operations, but not extract content other than the document info. Am I reading it wrong? – RichH Nov 8 '09 at 20:11
@RichH, it's component PageObject, has the extractText method, so pdf.getPage(0).extractText() prints the text on the first page (tried 2 minutes ago) :) – Fluffy Nov 8 '09 at 20:41
feedback

For Perl, check out these modules:

link|improve this answer
feedback

You might find this thread useful.

link|improve this answer
feedback

Parsing PDF and making something useful out of it is hard as the format is focused on keeping the layout so text can be stored in a way that each letter is positioned individually, depending on the font the text might also be stored as graphic.

libraries to read PDFs I know include the Zend Framework which has a PDF component which includes a PDF parser which can be used from PHP and gives more or less usaable results and the commercial PDFlib which offers quite usable results and offers binding to different languages.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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