Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: Pure Perl - Crop and Resize Jpeg Files

by Bod (Parson)
on May 16, 2021 at 17:42 UTC ( [id://11132670]=note: print w/replies, xml ) Need Help??


in reply to Re: Pure Perl - Crop and Resize Jpeg Files
in thread Pure Perl - Crop and Resize Jpeg Files

What you're talking about is simple using that library:

With a bit of fiddling to correct the syntax errors, this code produces a distorted image - not a cropped image.

  • Comment on Re^2: Pure Perl - Crop and Resize Jpeg Files

Replies are listed 'Best First'.
Re^3: Pure Perl - Crop and Resize Jpeg Files
by Your Mother (Archbishop) on May 16, 2021 at 18:32 UTC

    This version should do better (update: made more idiomatic/terse, it should really do aspect preservation to make a better image instead of translating an unknown aspect to a square)–

    use strictures; use GD; use Path::Tiny; GD::Image->trueColor(1); my $original_image = GD::Image->new( shift || die "Give an image!\n" ) +; my $new_image = GD::Image->new(100, 100); $new_image->copyResampled( $original_image, 0, 0, 0, 0, $new_image->getBounds, $original_image->getBounds ); path("new.jpg")->spew_raw($new_image->jpeg);

    The changes that make it “right” are GD::Image->trueColor(1) and $newimage->copyResampled instead of copyResized.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11132670]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (7)
As of 2024-04-16 11:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found