$pdftable->table( # required params : détermine les rangées et colonnes du tableau $pdf, $page, $data, x => 80, w => 460, start_y => 490, # 550 next_y => 490, start_h => 120, next_h => 120, # some optional params padding => 5, padding_right => 5, font => $pdf->corefont("Helvetica", -encoding => "utf8"), font_size => 9, background_color_odd => "#EEEEEE", background_color_even => "#FFFFFF", #cell background color for even rows header_props => $hdr_props, column_props => $col_props, new_page_func => \&newpage, # as defined above cell_render_hook => sub { # this is our newly introduced callback function my ($page, $row, $col, $x, $y, $w, $h) = @_; }, );