in reply to Re: Using CAM::PDF to change a form value
in thread Using CAM::PDF to change a form value
#!/usr/bin/perl use strict; use CAM::PDF; my $pdf = CAM::PDF->new('input-form.pdf'); $pdf->fillFormFields( 'site' => 'newsitename'); $pdf->cleanoutput('changed-form.pdf'); print "Done\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using CAM::PDF to change a form value
by starX (Chaplain) on Aug 27, 2007 at 21:14 UTC | |
|
Re^3: Using CAM::PDF to change a form value
by bonzo (Novice) on Feb 14, 2008 at 17:10 UTC |