Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

I'm trying to learn PDF:Template in order to automate some PDF production (phone lists, price lists, the like0). The following code works great until the content reaches the end of the page, then it appears to hang indefinitaly and according to top its not even using up a ton of resources.

#!/usr/bin/perl use strict; use warnings; use CGI qw/:standard/; use PDF::Template; my $pdf = PDF::Template->new(filename => 'report.xml'); my $loop = []; push @$loop, {Name => "Test" , Address => rand} for 1..80; $pdf->param( records => $loop ); print header(-type=>'application/pdf'), $pdf->get_buffer;
TEmplate:
<pdftemplate h="8"> <pagedef margins="1i"> <font face="Times-Roman"> <header header_height="1.5i">Hello World </header> <row> <textbox w="25%" text="Name" /> <textbox w="25%" text="Address" /> </row> <loop name="records"> <row> <textbox w="25%" text="$Name"/> <textbox w="25%" text="$Address"/> </row> </loop> <textbox w="100%" text="Bottum of list"/> <footer footer_height="1i"> <row> <textbox w="100%" justify="right">Page <var value="__PAGE__" +/></textbox> </row> </footer> </font> </pagedef> </pdftemplate>

Any ideas?


___________
Eric Hodges $_='y==QAe=e?y==QG@>@?iy==QVq?f?=a@iG?=QQ=Q?9'; s/(.)/ord($1)-50/eigs;tr/6123457/- \/|\\\_\n/;print;

In reply to PDF::Template (Hangs when content reaches second page) by eric256

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (8)
As of 2024-04-18 09:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found