in reply to Need help RTFM: Setting fontsize with PDF::Labels module

try  $self->{'FontSize'}++;

Replies are listed 'Best First'.
Re^2: Need help RTFM: Setting fontsize with PDF::Labels module
by nysus (Parson) on Sep 25, 2015 at 02:19 UTC
    That did not seem to do anything.
      Well, maybe using $pdf instead of $self would help here.
      $pdf = new PDF::Labels( $PDF::Labels::PageFormats[0], filename=>'labels.pdf', Author=>'PDF Labelmaker', Title=>'My Labels' ); $pdf->{'FontSize'} = 8; # or whatever you need # rest of your code
      I kinda doubt that :)