in reply to Parse PDF to text
#!/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 |