# use PDF::FromHTML; use lib '/root/.cpan/build/PDF-FromHTML-0.31-Mh5vwq/lib/'; my $pdf = PDF::FromHTML->new( encoding => 'utf-8' ); $pdf->load_file('other.htm'); $pdf->convert( Font => 'verdana.ttf', LineHeight => 10, Landscape => 1, ); $pdf->write_file('other.pdf');