Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Of course you don't have to rotate original files. Also, the correct POV is that you don't move/rotate/scale images or any other graphic objects. It's coordinate system that's being transformed, and changes are cumulative. Instead of keeping track of transforms applied so far, use push/pop stack frame, returning each time to unscaled/unrotated LL page corner as 0,0.

In fact, the "image" method does save/transform(translate to X,Y and scale to WxH)/restore, because image is 1x1 box "filled" with all its pixels. So there are now several transforms and stack frames for each image. That may seem wasteful but it isn't. Be generous with "save"/"restore" calls if required. (What's wasteful is importing the same image 16 times, but it's done only for sake of illustration.)

The "translate" and "image" calls could be combined in obvious way, and you can omit centering images inside A4 boxes altogether, if they are A4 as you say.

use strict; use warnings; use LWP::Simple; use PDF::API2; use constant { JPG => 'jpg.jpg', PDF => 'pdf.pdf', URL => 'https://jpeg.org/images/jpeg-home.jpg', A4W => 595, A4H => 842, RES => 72, # image above is at 72 dpi }; -f JPG or is_success getstore URL, JPG or die; my $pdf = PDF::API2-> new; my $page = $pdf-> page; $page-> mediabox( 'A0' ); my $content = $page-> gfx; for my $row ( 0 .. 3 ) { for my $col ( 0 .. 3 ) { $content-> save; $content-> transform( -translate => [ A4W + $row * A4W, $col * A4H ], -rotate => 90, ); my $jpeg = $pdf-> image_jpeg( JPG ); my $w = 72 / RES * $jpeg-> width; my $h = 72 / RES * $jpeg-> height; $content-> translate(( A4H - $w )/2, ( A4W - $h )/2 ); $content-> image( $jpeg, 0, 0, 72 / RES ); $content-> restore; } } $pdf-> saveas( 'pdf.pdf' );

In reply to Re: Making a 4 x 4 of rotated images (PDF::API2) by vr
in thread Making a 4 x 4 of rotated images (PDF::API2) by cristofayre

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-03-28 18:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found