Did you install imagemagick?
Linux:
sudo apt-get update && sudo apt-get install -y imagemagick php-imagick
Windows: https://mlocati.github.io/articles/php-windows-imagick.html
MAC:
brew install imagemagick
pecl install imagick
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello, Am trying to use intervention image with imagick driver but keep getting the error:
Intervention \ Image \ Exception \ NotSupportedException ImageMagick module not available with this PHP installation.
Here is my code: Qr::size(500)->generate($in, 'qrs/'.$in.'.svg'); Image::configure(array('driver' => 'imagick')); $qr = Image::make(public_path('qrs/'.$in.'.svg')); $qr->text("Serial No: ".$in);
I have also ran this on artisan:
php artisan vendor:publish --provider="Intervention\Image\ImageServiceProviderLaravel5"
Thanks for your help in advance.
Please or to participate in this conversation.