How to install Imagemagick on SuSE Linux
I could not get
ImagePlugin to work. It appeared that
CPAN:Image::Magick
was not picked up.
Adapting the instructions from
HowToInstallImageMagickOnRedHat, the only difference was that we use the YAST setup tool provided by suse to install
libjpeg-devel instead of 'yum' which is specific to redhat. Otherwise, the process is identical.
Environment
--
KeithHelfrich - 08 Jun 2007
Answer
Adapted slightly from
HowToInstallImageMagickOnRedHat :
Install
libjpeg-devel (needed for ImageMagick):
$ yast2
$ software --> Install and Remove Software --> Search --> libjpeg -->
$ install libjpeg-devel
Install ImageMagick from source:
$ wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick.tar.gz
$ gunzip -c ImageMagick.tar.gz | tar xvf -
$ cd ImageMagick-6.?.?
$ ./configure -with-perl=/usr/bin/perl
$ make; make install
Ensure that the ImageMagick libraries will be picked up by the system.
Edit
/etc/ld.so.conf and add the following line to the end of the file:
/usr/local/lib/
Then run the following command to update the library database:
$ /sbin/ldconfig
Test that PerlMagick works:
$ perl -MImage::Magick -e 1
If the output from this command is blank then all is well. If instead you get an error saying the
Image::Magick module can’t be found then read
Getting ImageMagick and PerlMagick working on Fedora Core
.
--
KeithHelfrich - 08 Jun 2007