#data to write my $data =[ ["Name ", "$name ", ], ["Age", "$name ", ], ]; # table creation $pdftable->table( $pdf, $page, $data, x => 150, w => 500, start_y => 400, next_y => 750, start_h => 700, next_h => 720, font => $pdf->corefont('Helvetica'), font_size => 11, padding => 5, # cell padding padding_top => 5, # top cell padding, overides padding padding_right => 5, # right cell padding, overides padding padding_left => 5, # left cell padding, overides padding padding_bottom => 5, # bottom padding, overides -padding border => 1, cell_props => $cell_props, # see section CELL PROPERTIES column_props => $col_props, ); ... #### ...