I'm trying to run a code that is not mine, and I get the following error:
ImagickExtensionNotFoundException: Imagick extension is not loaded.
Looking for a bit I found the code of the exception:
if (!extension_loaded('imagick')) {
throw new Exception\ImagickExtensionNotFoundException('Imagick extension is not loaded.');
}
Now investigate a bit, and find out that this extension is not installed with php
, and I found this place for your installation - > > link .
The problem is that I do not understand how I should install it in
windows 10
.