Steps to install imagick module

kumkumsharma

Administrator
Staff member
Imagick is a software suit which helps in image manipulation and can read and write images in various formats. It also provide facility to create, edit, compose and convert bitmap images.
  • Firstly you have to use below command to install package.
Code:
# yum install ImageM* netpbm gd gd-* libjpeg libexif gcc coreutils make
  • After that locate the directory where you want to download package and download the imagick package.
Code:
# cd /usr/local/src
# wget http://pecl.php.net/get/imagick-2.2.2.tgz
# tar zxvf ./imagick-2.2.2.tgz
  • Now run below commands to configure the package.
Code:
# cd imagick-2.2.2
# phpize
# ./configure
# make
# make test
# make install
  • At last restart Apache service to save the changes.
Code:
Restart httpd service - service httpd restart
 
Top