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@ |