PHP Warning: Version warning: Imagick was compiled against ImageMagick version 1799 but version 1802 is loaded. Imagick will run but may behave surprisingly in Unknown on line 0
Asked
Active
Viewed 8,060 times
2
-
You can check our this link, I think it solved the problem. https://stackoverflow.com/questions/27193631/install-imagick-for-php-and-apache-on-windows – Mr. TG Jun 13 '20 at 20:24
-
The answer is in your question. You need the correct combination of Imagemagick, Imagick and php otherwise it will not work. Even then it may not work. – Bonzo Jun 14 '20 at 14:40
2 Answers
10
write the next line in your php.ini file
imagick.skip_version_check=true
it worked for me
Reference

Azhar Uddin Sheikh
- 527
- 8
- 23
4
Try to use this version ImageMagick-7.0.7-25-Q16-x64-dll.exe
you can download from here https://sourceforge.net/projects/imagemagick/files/im7-exes/
It's because the version that you installed from https://imagemagick.org/script/download.php#windows is different from https://windows.php.net/downloads/pecl/deps/, so you need to downgrade the version to ImageMagick-7.0.7-25-Q16-x64-dll.exe
NB: make sure that you using x86 or x64

vreedom18
- 341
- 2
- 13
-
1
-
actually, it's work for me with the same warning info. PHP 7.4.11 (cli), ImageMagick 7.0.7-25 Q16 x64 2018-03-04 – vreedom18 Dec 04 '20 at 06:30