artist has asked for the wisdom of the Perl Monks concerning the following question:
Thanks..#!/usr/bin/perl use strict; use warnings; use PDF::API2; my $imageFile = 'test.jpg'; my $doc = new PDF::API2( -file => "$0.pdf" ); my $page = $doc->page(); my $gfx = $page->gfx(); my $pic = $doc->image_jpeg( $imageFile ); $gfx->image( $pic, 100, 100, 1 ); $doc->save();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Centering image in PDF
by artist (Parson) on Apr 06, 2005 at 23:51 UTC | |
|
Re: Centering image in PDF
by ghenry (Vicar) on Apr 06, 2005 at 23:05 UTC | |
|
Re: Centering image in PDF
by jj808 (Hermit) on Apr 07, 2005 at 21:26 UTC |