![]() |
|
Think about Loose Coupling | |
PerlMonks |
Re: Re: Re: Re: Image::Magick woesby Arbogast (Monk) |
on Sep 05, 2003 at 05:15 UTC ( #289110=note: print w/replies, xml ) | Need Help?? |
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);
In Section
Seekers of Perl Wisdom
|
|