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


in reply to Adding Image to PDF

You'll have to use the gfx object method for that, AFAIK.
my $gfx = $page->gfx; my $img = $pdf->image("images/logo.jpeg", 100, 60); # define the image + and image dimensions $gfx->image($img, $x, $y); # Add the image, including coordinates $gfx->close; # close up