ImageMagick
Posted by Jim on December 7, 2006
How do you install ImageMagick on Fedora Core 4?
The support RPM’s did not include FC4, and running yum install ImageMagick did not return any results. I went to the ImageMagick web site at www.imagemagick.org and compiled from source.
How do you compile ImageMagick from source for Linux and Fedora Core 4?
Easy!
- Check to see if ImageMagick is already installed
convert -version
- Download ImageMagick.tar.gz from ftp.imagemagick.org or its mirrors
- If you downloaded it locally, transfer the file to your server with SCP or WINSCP3
- Unpack the file on your server
gunzip -c ImageMagick.tar.gz | tar xvf -
- Next step, configure and then compile ImageMagick
cd ImageMagick-6.?.?./configuremake
- No error messages, so time to install ImageMagick
make install- Verify that the installation was a success
/usr/local/bin/convert logo: logo.gifconvert -version
Popularity: 1%





Add A Comment
You must be logged in to post a comment.