in reply to Multiple Page Text using PDF::API2

Use PDF::Template. If that's all you want to do, the following will work:
my $template = PDF::Template->new( filename => 'my_template.xml', ); my @params = map { { VALUE => $_ } } @text; $template->params( VALUES => \@params ); $template->write_file( 'outputfile.pdf' ); -------- # This is the contents of my_template.xml -------- <pdftemplate h="8"> <pagedef> <font face="Time-Roman"> <loop name="VALUES"> <row><textbox w="100%" justify="left" text="$VALUE" /></row> </loop> </font> <pagedef> </pdftemplate>

Try that and see if it works. Note - you will need to install PDFLite from http://www.pdflib.com. (They have both free and commercial versions of PDFLib. PDF::Template will work with both.)

------
We are the carpenters and bricklayers of the Information Age.

Then there are Damian modules.... *sigh* ... that's not about being less-lazy -- that's about being on some really good drugs -- you know, there is no spoon. - flyingmoose