in reply to Re^2: PDF::API2 Editing PDf files
in thread PDF::API2 Editing PDf files

It's your my $page = $pdf->page; that's creating the new page.

To put further content on an already existing page, simply use the method openpage instead, e.g. my $page = $pdf->openpage(1) for the first page -- see the section "PAGE METHODS" in the module's docs for the details.