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


in reply to Re^2: Adding Image to PDF
in thread Adding Image to PDF

The last error generally means that such image does not exist and as such the value is left unidentified. Are you sure the image is there? Also try $gfx->stroke; and $gfx->compress(); after closing.

Replies are listed 'Best First'.
Re^4: Adding Image to PDF
by Anonymous Monk on Oct 10, 2012 at 18:16 UTC
    I got it to work, now one last issue, I would like the logo to be placed next to the heading's words, any ideas?
    ... my $logo = "images/logo.gif"; my $image = $pdf->image_gif($logo, 150, 50); my $gfx = $page->gfx; $gfx->image($image, 10, 750); my $head_data =[ #this will not work #[$gfx->image($image, 10, 750),], ["Add Logo here",]' ["My Company Name",], ["USA",], ["Customers",], ]; $pdftable->table( # required params $pdf, $page, $head_data, x => 20, w => 750, start_y => 605, next_y => 594, start_h => 100, next_h => 100, column_props => [ { justify => 'left' } ], ); ...

    Thanks for the help@