Perl's PDF::API2
can put text on a page, like the following example does:
$pdf = PDF::API2->new();
$page = $pdf->page();
$page->mediabox('A4');
$page->gfx->textlabel(50, 50, $pdf->corefont('Helvetica'), 10, "Hello world");
$pdf->saveas('test.pdf');
But I can not find any documentation for multi-line text, like the intuitive but not working string "Hello\nworld"
.
What is the proper symbol for a newline in the PDF?
Is there a method to increase/decrease line spacing?
Maybe module's POD is broken, look at the source. Then, e.g.
This example shows long line automatic wrapping, newline handling, and setting of leading (line spacing).
An update as to request in comment :). You can do it as Borodin suggested, calling 'standard'
textlabel
on your text split on newlines and updating text position manually, it's not difficult. But, TMTOWTDI, and you can use my quick (and dirty) solution below --section
is only used to handle newlines, auto-wrapping prevented with 'infinite' 'text-box'. Mysub
call semantics is similar totextlabel
. Or you can add support for color, alignment, etc., and probably make it a proper method in your class.