Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
#!/usr/bin/perl --
use Image::Magick;
$image = new Image::Magick;
$image->Set(size=>'200x200');
$err = $image->Read('gradient:red-blue');
die "$err" if "$err";
$image->Write('gradient-red-blue.png');