Magento – Magento 2.3.X – Required PHP extension ‘Imagick’ was not loaded

magento2.3

Magento 2.3.2 when I set image adapter for ImageMagick images on front-end not load Shows placeholder.

When I run

bin/magento catalog:image:resize 

it says Required PHP extension Imagick was not loaded.

imagemagick extension is loaded

Best Answer

To fix it, set the PHP GD2 value for the

ADVANCED → Developer → Image Processing Settings → Image Adapter configuration option

Also, if imagick is not installed on your server then install it with the below command

sudo yum install php7-imagick

Hope it helps!!!

Related Topic