in reply to Re^2: PDF Letter format
in thread PDF Letter format
poj$txt->lead(13); # line spacing foreach my $para (@paragraphs){ $txt->translate(20,$y); # width, max height $txt->paragraph($para, 490, 800, align => "left" ); (undef, $y) = $txt->textpos(); $y -= 20; # paragraph spacing }
|
|---|