I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2010-07-23 04:28:30.537206-07 by markusb in response to 12828
Re: Adding images
Hi Kodo,

The POD of PDF-Create shows how to imbed images.

Here the essential two lines you need. There is no need to include PDF::Create:JPEG.
my $jpg1 = $pdf->image($jpgname); $page->image( 'image' => $jpg1, 'xscale' => 0.2, 'yscale' => 0.2, 'xpos' => 350, 'ypos' => 400 );

Markus
Direct Responses: 12832 | Write a response