How to install Imagick in php?

1

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 .

    
asked by Shassain 05.08.2018 в 02:45
source

0 answers