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


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

I always just call Image::Magick straight, keeps things simple IMO. Dunno if that works for you.

my $command = "identify $file";
my $answer = `$command`;

#strip out info you need from answer with regular expressions

#build up a convert command

$command = "convert + #whatever you need to make convert work#";
system($command);