Horace Redelmyer wrote: > I have installed Perl 5.10.0 build 1004 and ImageMagick 6.4.8-8-Q16 on a > Windows Server 2003 box. > > I get the following error when trying to run: > > DIE: String: Can't load 'C:/Perl/site/lib/auto/Image/Magick/Magick.dll' > for modu > le Image::Magick: load_file:This application has failed to start because > the app > lication configuration is incorrect. Reinstalling the application may > fix this p > roblem at C:/Perl/lib/DynaLoader.pm line 202. > > Can anyone tell me what is happening. The online documentation for > ActivePerl implies that PerlMagick was compiled for the wrong version > Perl. Has anyone else encountered this?
Most probably, you don't have ImageMagick in your PATH, so its DLL files cannot be found. Try to run: perl -MImage::Magick -e "print $Image::Magick::VERSION;" If it's a DLL issue, it will popup a message with missed DLL name. -- Serguei Trouchelle _______________________________________________ ActivePerl mailing list [email protected] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
