in reply to Adding Image to PDF
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
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Adding Image to PDF
by Anonymous Monk on Oct 10, 2012 at 17:23 UTC | |
by MilanorTSW (Beadle) on Oct 10, 2012 at 17:49 UTC | |
by Anonymous Monk on Oct 10, 2012 at 18:16 UTC |