Posted: 2006-03-28T10:37:04-07:00
Looks like you may have an older version of PerlMagick that does not support the Identify() method. Try
If that fails, PerlMagick may not be installed properly.
Code: Select all
use Image::Magick;
my $image;
my $x;
$image = Image::Magick->new;
$image->Read('logo');
$x = $image->Write('logo.jpg');
print $x;