我正在使用Perl的PDF::API2模块来创建PDF文档,我需要在页面的特定X,Y位置添加PNG图像。
我该怎么做?
答案 0 :(得分:5)
其实我已经解决了这个问题:
# grab a text object - we are missing fonts?
my $gfx = $page->gfx;
my $image = $self->pdf->image_png('/tmp/logo.png');
# add the image to the graphic object - x, y, width, height
$gfx->image($image, 24, 815, 102, 29);