erabus has asked for the wisdom of the Perl Monks concerning the following question:
When running this script:Can't load 'c:/Perl/site/lib/auto/Image/Magick/Magick.dll' for module +Image::Magick: load_file:The specified module could not be f ound at c:/Perl/lib/DynaLoader.pm line 230.
The file 'c:/Perl/site/lib/auto/Image/Magick/Magick.dll' does exist. I am using this version of Perl:use strict; use lib ( "C:/Program Files/ImageMagick-6.2.2-Q16" ); use Image::Magick; my($image, $x); $image = Image::Magick->new; $x = $image->Read('girl.png', 'logo.png', 'rose.png'); warn "$x" if "$x"; exit;
This is perl, v5.8.6 built for MSWin32-x86-multi-thread (with 3 registered patches, see perl -V for more detail) Copyright 1987-2004, Larry Wall Binary build 811 provided by ActiveState Corp. http://www.ActiveState. +com ActiveState is a division of Sophos. Built Dec 13 2004 09:52:01
ImageMagick-6.2.2-0-Q16-windows-dll.exe
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Installing PerlMagick on Windows XP
by Jouke (Curate) on Apr 26, 2005 at 18:22 UTC | |
by Anonymous Monk on Apr 26, 2005 at 21:31 UTC |