- or download this
use Apache::Tika;
...
my $text = $tika->tika($pdf);
print "$text\n";
- or download this
use Apache::Tika::Async;
...
use Data::Dumper;
print Dumper $tika->get_meta($fn);
print Dumper $tika->get_text($fn);
- or download this
use Data::Dumper;
use Apache::Tika::Server;
...
my $fn = "x.pdf";
print Dumper $tika->get_text($fn);