in reply to Parse PDF to text

I usually get good results with Text::FromAny.
#!/usr/bin/perl use strict; use warnings; use Text::FromAny; my $tFromAny = Text::FromAny->new( file => '/root/Desktop/some.pdf'); print my $text = $tFromAny->text, "\n";

Replies are listed 'Best First'.
Re^2: Parse PDF to text
by doubledecker (Scribe) on May 23, 2011 at 08:55 UTC

    I tried pdftotext and got good results, but needs much of data parsing. Let me give a try on Text::FromAny and will post my updates.