in reply to convert text file to pdf with PDF::Create
I would start by reading in your text document, and putting what you read in the "some text" area.my $f1 = $pdf->font('Subtype' => 'Type1', 'Encoding' => 'WinAnsiEncoding', 'BaseFont' => 'Helvetica'); $page->string($f1, 20, 306, 396, "some text");
|
---|