http://www.perlmonks.org?node_id=583828


in reply to PDF::API2 Editing PDf files

I don't have to much to brag about yet all i have thus far is opening the file and saving it as something else I can get much else to work, also never worked with this module or pdf's before...lol
#!/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

    Nothing to do with your immediate problem, but we strongly urge you to add use strict; use warnings; to all the Perl you write. In the long run it will save us a lot of time answering your questions ;).


    DWIM is Perl's answer to Gödel