Requirements
This extension requires ImageMagick version 6.2.4+ and PHP 5.1.3+. Package information is here, Imagick package on PECL
The normal procedure goes like this
wget http://pear.php.net/go-pear.phar
php go-pear.phar
pecl install imagick
While it throws the following error,
No releases available for package "pecl.php.net/imagick"
install failed
So I decided to compile directly from source (in order to generate imagick.so)
yum install php-pear php-devel
yum install ImageMagick ImageMagick-devel
yum install pcre-devel
wget http://pecl.php.net/get/imagick-3.2.0RC1.tgz
tar -xvf imagick-3.2.0RC1.tgz
cd imagick-3.2.0RC1/
phpize
./configure
make
make test
make install
Remember to turn on the extension in the php configuration file.
vim /etc/php.ini
extension = imagick.so