using Laravel and trying to work with loading images using Imagine.
The problem is that I get the error message:
Imagine \ Exception \ RuntimeException
Imagick not installed
Open: /Applications/MAMP/htdocs/laravelcms/vendor/imagine/imagine/lib/Imagine/Imagick/Imagine.php
{
public function __construct()
{
if (!class_exists('Imagick')) {
throw new RuntimeException('Imagick not installed');
}
I followed this guide and correctly created all folders and files, etc., as indicated:
http://creolab.hr/2013/07/image-manipulation-in-laravel-4-with-imagine/
I also checked that the Imagick folder with all the files, etc. is in the right place.
Any help?
Thanks Craig.
source
share