Nalina has asked for the wisdom of the Perl Monks concerning the following question:
when I executed it, I got a pop up message saying#!/usr/local/bin/perl use Image::Magick; my($image, $x); $image = Image::Magick->new; $x = $image->Read('D:/d/FirewallRespTimebyDay.xls.0.PNG'); warn "$x" if "$x"; $x = $image->Crop(geometry=>'100x100"+100"+100'); warn "$x" if "$x"; $x = $image->Write('C:/Graph.xls.01.08.2004.PNG'); warn "$x" if "$x";
I also got an error in the command prompt sayingThe procedure entry point LevelImageChannel could not be located in th +e dynamic link library CORE_RL_magick.dll
How do I solve this?Can't load 'C:/Perl/site/lib/auto/Image/Magick/Magick.dll' for module +Image::Magick: load_file:The specified procedure could not be found a +t C:/Perl/lib/DynaLoader.pm line 229. at D:\image.pl line 2 Compilati +on failed in require at D:\image.pl line 2. BEGIN failed--compilation + aborted at D:\image.pl line 2.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Problem with Image::Magick
by BrowserUk (Patriarch) on Aug 03, 2004 at 10:32 UTC | |
|
Re: Problem with Image::Magick
by inman (Curate) on Aug 03, 2004 at 10:38 UTC |