vote up 2 vote down star
1

I'm looking for a fast and reliable way to read/parse large PDF files in Ruby (on Linux and OSX).

Until now I've found the rather old and simple PDF-toolkit (a pdftotext-wrapper) and PDF-reader, which was unable to read most of my files. Though the two libraries provide exactly the functionality I was looking for.

My question: Have I missed something? Is there a tool that is better suited (faster and more reliable) to solve my problem?

flag

3 Answers

vote up 0 vote down check

After trying different methods, I'm using PDF-Toolkit now. It's quite old, but it's fast, stable and reliable. Besides, it really doesn't need to be new, because it just wraps the xpdf commandline utilities.

link|flag
vote up 1 vote down

You could use JRuby and a Java PDF library parser such as ApachePDFBox (https://www.ohloh.net/p/pdfbox). See also http://java-source.net/open-source/pdf-libraries.

link|flag
Or iText, lowagie.com/iText. – James McMahon Apr 25 at 0:12
That sounds like an interesting alternative. Have you seen an implementation or an example somewhere? – Javier Apr 25 at 0:15
@nemo: iText? I'm trying to read PDFs, not generate them. – Javier Apr 25 at 0:16
vote up 0 vote down

Here's some options:

http://en.wikipedia.org/wiki/List_of_PDF_software

From that link, and searching sourceforge, there's a couple of command line utilities that might do what you want, like this one: http://pdftohtml.sourceforge.net/

Depending on your requirements and what the PDFs look like, you could look at using the Google Docs API (uploading the PDF and then downloading it as text), or could also try something like gocr. I've had a lot of luck parsing image text with gocr in the past, and you'd just have to bounce out to the shell to do it, like gocr -i whatever.pdf (I think it works with PDFs).

The downside to all of these is that they're not pure-Ruby implementations, but lots of the good (and free) OCR projects seem to be done that way.

link|flag
Why would I need OCR ("optical character recognition") to read a PDF that doesn't consist of scanned text? Wouldn't that needlessly slow down the whole process? – Javier Apr 25 at 0:14
No. OCR is the process of converting images to text. PDF readers and PDF toolkits utilize this concept to convert an image (the same that is output from, say, a scanner) to text. – Terry Apr 25 at 4:00
So basically you're saying, that all text inside a PDF consists of an image that needs to be recognized as text first? – Javier Apr 25 at 22:58
I'd be lying if I said yes or no. I just know I've had success with OCRs. – Terry Apr 26 at 1:30

Your Answer

Get an OpenID
or

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