Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to extract text from a pdf?

share|improve this question
similar question perhaps useful: stackoverflow.com/questions/139015/… – jpwco Jan 19 '11 at 1:13

closed as not constructive by George Stocker Aug 1 '12 at 2:19

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 6 down vote accepted

The CAM::PDF module is pretty useful for extracting text and maintaining some information about where it came from in the document. It installs /usr/local/bin/getpdftext.pl which demonstrates simple extraction. However, CAM::PDF can only read PDFs that are completely valid.

If you are dealing with ill-formed PDFs, you may need a more lenient parser, such as pdftotext. It dumps foo.pdf to foo.txt, which you could then read into Perl.

share|improve this answer
Nice first post! Welcome to StackOverflow. – Robert Harvey Jan 19 '11 at 19:57
Thanks. It's nice to earn privileges such as posting two links at the same time. :) – Phssthpok Jan 20 '11 at 2:53

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