Use PDF::API2:
use PDF::API2;
my $newpdf = new PDF::API2;
my $oldpdf = PDF::API2->open($filename);
for my $pg (1 .. $oldpdf->pages) {
my $img = $pdf->pdfimageobj( $oldpdf, $pg );
my $page = $pdfnew->page();
$page->mediabox( 6 * 72, 9 * 72); # There's 72 postscript points in
+ an inch
my $gfx = $page->gfx;
$gfx->pdfimage(
$img,
0.5 * 72, # half inch from the left
0.5 * 72, # half inch from the bottom
5 / 8.5, # x scale = new width / old width
8 / 11 # y scale = new height / old height
);
}
$pdf->saveas($newfilename);
$pdf->end();
(Code is untested but worked in my head. There shouldn't be much wrong with it. AFAIK, PDF::API2 will automatically embed any fonts it needs -- so long as it can find them)
"Get real! This is a discussion group, not a helpdesk. You post something, we discuss its implications. If the discussion happens to answer a question you've asked, that's incidental." -- nobull@mail.com in clpm
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.