Skip to content

Instantly share code, notes, and snippets.

@danielstgt
Last active December 14, 2023 02:46
Show Gist options
  • Star 52 You must be signed in to star a gist
  • Fork 16 You must be signed in to fork a gist
  • Save danielstgt/dc1068e577bbd8b6e9a6050a6db1f9c3 to your computer and use it in GitHub Desktop.
Save danielstgt/dc1068e577bbd8b6e9a6050a6db1f9c3 to your computer and use it in GitHub Desktop.
Install ImageMagick / Imagick 3.4.4 on PHP 7.4 server (Laravel Forge)
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
apt-get install pkg-config libmagickwand-dev -y
cd /tmp
wget https://pecl.php.net/get/imagick-3.4.4.tgz
tar xvzf imagick-3.4.4.tgz
cd imagick-3.4.4
phpize
./configure
make install
rm -rf /tmp/imagick-3.4.4*
echo extension=imagick.so >> /etc/php/7.4/cli/php.ini
echo extension=imagick.so >> /etc/php/7.4/fpm/php.ini
service php7.4-fpm restart
service nginx restart
@SoftCreatR
Copy link

Hi,
is there some way to support webp using ImageMagick in Laravel?

ImageMagick != Imagick

Imagick supports everything, that ImageMagick supports. So if you compile ImageMagick with WebP support, you can make use of it in PHP/imagick.

@TorchSK
Copy link

TorchSK commented Jan 14, 2021

Thank you for answers, but I am really noob and have no idea how to compile ImageMagick with webp support. All I know that it has to be compiled with libwebp

@SoftCreatR
Copy link

Install libwebp on your server and then, try reinstalling ImageMagick, or compile it yourself. To do so, first uninstall ImageMagick and then, use my tool for example: https://github.com/SoftCreatR/imei

@atadioli
Copy link

Hi, thanks for this guide.
I see this message with the command "php -v":

PHP Warning:  PHP Startup: Unable to load dynamic library 'imagick.so' (tried: /usr/lib/php/20190902/imagick.so (/usr/lib/php/20190902/imagick.so: cannot open shared object file: No such file or directory), /usr/lib/php/20190902/imagick.so.so (/usr/lib/php/20190902/imagick.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
PHP 7.4.3 (cli) (built: Nov 25 2021 23:16:22) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.3, Copyright (c), by Zend Technologies

How to fix it?

@SoftCreatR
Copy link

Make sure to compile imagick with the corresponding phpize version.

@bolechen
Copy link

bolechen commented Feb 9, 2022

I use

sudo apt install php7.4-imagick

@cooperdk
Copy link

cooperdk commented Jun 23, 2022

I use

sudo apt install php7.4-imagick

Uhm... you can only use that if the version of imagick and php7.4-imagick your OS provides supports webp!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment