How to install magickwand in linux
First go to the path where you want to download the tar file.
cd /usr/local/src/
Use the below link to download the magickwand tar file.
wget http://www.magickwand.org/download/php/MagickWandForPHP-1.0.9.tar.gz
Extract the file using the below command.
tar -zxvf MagickWandForPHP-1.0.9.tar.gz
Go inside the extracted folder.
cd MagickWandForPHP-1.0.9
Run the below commands to configure and compile it with PHP
phpize
./configure
make
make install