Re: How to resize images with perl

2002-02-03 Thread Marek Polonski
> Awesome! is there anyway to do this using GD also? image magick wont seem > to install from CPAN - keeps returning bad make status. There are two articles in WDVL that explain this http://www.wdvl.com/Authoring/Languages/Perl/ Marek -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: How to resize images with perl

2002-01-21 Thread Matt C.
lly simple. The only problem is that GD has not supported .gif images > for a few years due to copyright problems. > > Rob > > > -Original Message- > From: Eric [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 21, 2002 3:46 PM > To: Hanson, Robert > Cc: [EM

RE: How to resize images with perl

2002-01-21 Thread Hanson, Robert
ry 21, 2002 3:46 PM To: Hanson, Robert Cc: [EMAIL PROTECTED] Subject: RE: How to resize images with perl Awesome! is there anyway to do this using GD also? image magick wont seem to install from CPAN - keeps returning bad make status. Thanks again, ~Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED

RE: How to resize images with perl

2002-01-21 Thread Eric
Awesome! is there anyway to do this using GD also? image magick wont seem to install from CPAN - keeps returning bad make status. Thanks again, ~Eric -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: How to resize images with perl

2002-01-21 Thread Hanson, Robert
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