use PDF::Create::Column; my $pdf = new PDF::Create::Column( filename => 'test.pdf', Version => 1.2, Author => 'George Sherston', Title => 'test', ); my $page = $pdf->new_page('MediaBox' => [ 0, 0, 650, 920 ]); my $fn = $pdf->font( 'Subtype' => 'Type1', 'Encoding' => 'WinAnsiEncoding', 'BaseFont' => 'Helvetica' ); ### ### # here we go!!! # ### ### $page = $pdf->PDFColumn( { page => $page, font => $fn, text => $text, right => 250, height => 850, fontsize => 15 } ); $pdf->close;