http://qs1969.pair.com?node_id=441287


in reply to Re: Re: Image::Magick
in thread Image::Magick

I am trying to increase the number of colors in an image, but it is not working.
$img = Image::Magick->new; $img->Read('../images/logo.gif'); my $nu = $img->Get('colors'); $img->Set(colors=>256); $img->Quantize(); my $nu1 = $img->Get('colors');
nu and nu1 remains the same- 127 in my case. Any help is appriciated.