Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

(ar0n) Re: creating thumbnails

by ar0n (Priest)
on Jan 03, 2002 at 07:13 UTC ( [id://135906]=note: print w/replies, xml ) Need Help??


in reply to creating thumbnails

This is from a small test script I wrote yesterday. It creates a thumbnail while retaining image proportions.
#!/usr/bin/perl -w use strict; use Image::Magick; sub make_thumb { my $file = shift; my $thumb = shift; my $size = 100; # image size; either width or height will be a 100 + pixels (or both) my $img = new Image::Magick; $img->Read($file); my ($width, $height) = $img->Get("width", "height"); if ($width > $height) { my $ratio = $size / $width; $height *= $ratio; $width = $size; } elsif ($height > $width) { my $ratio = $size / $height; $width *= $ratio; $height = $size; } else { $width = $size; $height = $size; } $img->Resize( width => $width, height => $height, blur => 1 ); $img->Write($thumb); } make_thumb("/path/to/img.png", "/path/to/thumbnail.png");

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (6)
As of 2024-03-29 12:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found