I've some problem with scaling an gif image with transparency.
I try to convert it like this:
Code: Select all
my $img_scale = Image::Magick->new;
$img_scale->Read(foo.gif);
$img_scale->Scale(width=>'37', height=>'75');
$img_scale->Write(foo.gif);
I use. Version: ImageMagick 6.3.7 11/12/08 with GPL Ghostscript 8.62 (2008-02-29)
what I'm doing wrong?