Install Imagemagick on CentOS

 

This article will show you how I successfully installed Imagick on Centos. And we have many ways to install. And I will show you 2 ways to install Imagick, you can choose either way.
How to Install Imagemagick on CentOS
Installation of ImageMagick via Repository
  1. Install required packages

Start off by installing the prerequisites

yum install gcc php-devel php-pear

php-pear: PHP pear extension

gcc: the GCC extension

php-devel: the PHP-devel extension

Issue the following to verify whether you have Imagemagick available via the current repositories

yum list ImageMagick*

You should see something similar to the result below:

yum list ImageMagick

Issue the following to install ImageMagick:

yum install ImageMagick ImageMagick-devel

Now install the imagick library for PHP:

pecl install imagick

 

Load the imagick extension into PHP:

echo extension=imagick.so > /etc/php.d/imagick.ini

 

Restart Apache

 

service httpd restart

 

 

To verify that imagick has been successfully installed, do any of the following

 

php -m | grep imagick

 

 

Or check your PHPINFO

 

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *