Currently, I have cloned a project. I have PHP 7 on Ubuntu 14.04 64-bit.
The ImageMagick library is installed using the following command
sudo apt-get install php-imagick
But when I try image manipulation through this library, it throws the following exception
(1/1) NotSupportedException
ImageMagick module not available with this PHP installation.
How can I install this software with the latest PHP version?
Note: I am using Laravel 5.4 in this project.
You have to add
extension=imagick.so
in yourphp.ini
file.You can do some yhing like this for the fastest way :
The result is like that :
Or call
<?php phpinfo(); ?>
from some php file to get this information :)PS : Source