pawank86 has asked for the wisdom of the Perl Monks concerning the following question:
use CAM::PDF; use CAM::PDF::PageText; my $pdf = CAM::PDF->new(test.pdf); foreach (1..($pdf->numPages())) { my $page_cont = $pdf->getPageContentTree($_); print CAM::PDF::PageText->render($page_cont); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Using CAM::PDF module to read the pdf content
by Corion (Patriarch) on Mar 08, 2010 at 08:34 UTC | |
|