Infos from the Image width "identify"

PerlMagick is an object-oriented Perl interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning PerlMagick.
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post 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.
Post Reply