in reply to PDF::API2 Editing PDf files
#!/usr/bin/perl use PDF::API2; $pdf = DF::API2->open('Maturity Assess3.pdf'); $pdf->saveas("new.pdf"); #####to import a page and place it on another page ## $pdf = PDF::API2->new; ## $old = PDF::API2->open('my/old.pdf'); ## $page = $pdf->importPage($old,2); # get page 2 into page 1 ## $pdf->saveas("our/new.pdf");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: PDF::API Editing PDf files
by GrandFather (Saint) on Nov 13, 2006 at 21:12 UTC |