you know I probably not, But I thought each time through the pdf objects where distroyed??
I figured out where its failing, just not sure what I am doing wrong, you are probably on to something with the $pdf object, but not sure how to do it here is code where the problem lies:
my $ChartImageName = "$tmpPath/VeTCOChart.png";
setImage($ChartImageName, 110/mm, 165/mm, 95.25/mm, 79.375/mm);
sub setImage{
my $photo_file=$pdf->image_png($_[0] ,-lossless => 1);
my $photo = $page->gfx;
## add photo to pdf include cordinates and size - image($photo, x,
+ y, width, hieght);
$photo->image($photo_file, $_[1], $_[2], $_[3], $_[4]);
}
setimage call is where its failing!
I open a pdf template so this is how I declare my pdf object.
my $pdf = PDF::API2->open($Template) or print "PDF Object is failing o
+r NULL";
my $page = $pdf->openpage(1);
thanks for the help
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.