Page 1 of 1

Posted: 2006-03-28T10:37:04-07:00
by magick
Looks like you may have an older version of PerlMagick that does not support the Identify() method. Try

Code: Select all

use Image::Magick;
my $image;
my $x;

$image = Image::Magick->new;
$image->Read('logo');
$x = $image->Write('logo.jpg');
print $x;
If that fails, PerlMagick may not be installed properly.