2

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

Raul Cruz
  • 37
  • 1
  • 5
  • 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 Answers2

10

write the next line in your php.ini file

imagick.skip_version_check=true

it worked for me

Reference

code grepper

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