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


in reply to Adding Image to PDF

... my $image = $pdf->image_jpeg( "images/logo.jpeg" ); $page->gfx->image( $image, 0, 0 ); ...

The key thing here is to call ->gfx on the page object (which kind of gets you the "graphics context" of that page).