Remove imagemagick
sudo apt-get --purge remove imagemagick
sudo apt autoremove
Install Required package:
sudo apt-get install build-essential
sudo apt-get install checkinstall
sudo apt-get install libgs-dev
sudo apt-get install ghostscript
Create a new directory
mkdir ~/src
cd ~/src
Download the Binary:
wget http://www.imagemagick.org/download/releases/ImageMagick-6.7.7-10.tar.xz
Extract the tar
tar xf ImageMagick-6.7.7-10.tar.xz
cd ImageMagick-6.7.7-10/
Proceed to instaltion:
sudo ./configure --with-gslib=yes
sudo make
sudo checkinstall
sudo ldconfig
Verify the version:
identify -version
Proceed to instaltion: