Help for this page

Select Code to Download


  1. or download this
    use PDF::Create;
    use strict;
    my $pdf = new PDF::Create('filename' => 'test.pdf',
    ...
                        'BaseFont' => 'Helvetica-Oblique');
    $page->string($f1, 40, 30, 600, "Hello from pdf Hell!" );
    $pdf->close;