You may find changelog at:
http://www.imagemagick.org/script/changelog.php
Let`s begin with the installation of the latest available ImageMagick under binary OS Centos.
1. Download binary packages from the ImageMagick site:
http://www.imagemagick.org/download/linux/CentOS
- Code: Select all
wget http://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-6.7.6-5.x86_64.rpm
wget http://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-devel-6.7.6-5.x86_64.rpm
wget http://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-perl-6.7.6-5.x86_64.rpm
2. Install them (or upgrade in case ImageMagick packages of the previous version are already exist in the system):
- Code: Select all
rpm -Uvh ImageMagick-6.7.6-5.x86_64.rpm ImageMagick-devel-6.7.6-5.x86_64.rpm ImageMagick-perl-6.7.6-5.x86_64.rpm
3. Most likely you will require some additional packages during dependencies check. All of them I have managed to found at the official Centos repos (stable and testing branches):
http://mirror.centos.org/centos/5/os/x86_64/CentOS/
http://dev.centos.org/centos/5/testing/x86_64/RPMS/
4. Compile and install Perl modules/classes.
Unfortunately, some script requires more recent version of Image::Magick perl class, while the latest available version is 6.74 (http://search.cpan.org/dist/PerlMagick/). That`s why we perform the following actions:
- Code: Select all
wget ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.7.6-5.tar.bz2
tar xjvf ImageMagick-6.7.6-5.tar.bz2
cd ImageMagick-6.7.6-5/PerlMagick/
perl Makefile.PL
make
make install