PhosphoricX has asked for the wisdom of the Perl Monks concerning the following question:
I would like text to print out on a page in my PDF file as:@text = ( "text 0x000000FF 0x00009283", " text2 0x0000000FF 0x00000002", " text3 0x000000101 0x00000064", ... and so forth );
My problem is that PDF::API2 has very poor documentation. I attemped to combine all the lines into a string and use the text->paragraph method. However, the newline characters are not recognised. I'm thinking that you could determine the height of each line and use that to translate the next line to the appropriate point. The text should also span multiple pages as needed. Unfortunately, I've run into quite a lot of difficulties due my inexperience with this module.text 0x000000FF 0x00009283 text2 0x0000000FF 0x00000002 text3 0x000000101 0x00000064
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Multiple Page Text using PDF::API2
by dragonchild (Archbishop) on Apr 01, 2004 at 13:22 UTC | |
|
Re: Multiple Page Text using PDF::API2
by CandymanCID (Initiate) on Apr 01, 2004 at 14:30 UTC |