Try Image::Magick. use Image::Magick;
my $im = new Image::Magick(); $im->Read($inputfile); $im->Resize( geometry => "200x200" ); $im->Write($outputfile); undef $im; Rob -----Original Message----- From: Eric [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 3:10 PM To: [EMAIL PROTECTED] Subject: How to resize images with perl Hello all, I have a directory of various .jpg and .gif files - and would like to resize to them to a smaller size all at one time - is there a perl module or any hints that could help me out? Thanks in advanced. ~Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]