in reply to Thumbnails and Filehandles
use strict; use warnings; use Image::Magick; my $image = Image::Magick->new; my $fh = upload('image'); $image->Read(file=>$fh); $image->Thumbnail(geometry=>'150x150'); $image->Write(filename=>'xyz2.jpg');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Thumbnails and Filehandles
by thekestrel (Friar) on Jul 10, 2005 at 17:54 UTC |