kean has asked for the wisdom of the Perl Monks concerning the following question:
But i can't filter the form fields or get there content. Is there a way to do this?use strict; use warnings; use CAM::PDF; my $pdf = CAM::PDF->new('file.pdf'); my @formfields = $pdf->getFormFieldList(); foreach (@formfields) { print $_."\n"; } exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Get data from pdf form
by poj (Abbot) on Mar 24, 2016 at 18:41 UTC | |
|
Re: Get data from pdf form
by ww (Archbishop) on Mar 24, 2016 at 18:48 UTC |