Cannot load imagick library

你离开我真会死。 提交于 2020-12-29 11:55:31

问题


I have installed the imagick from here (ImageMagick-7.0.3-1-Q16-x64-dll) and the dll (TS 32 bit) from here. And also copiend the CORE_RL_* to the C:\xampp\apache\bin BUT still i get the following error when i run the laravel server.

ERROR: Warning: PHP Startup: Unable to load dynamic library 'C:\xampp\php\ext\php_imagick.dll' - The specified module could not be found. in Unknown on line 0

Also, I placed dll file in C:\xampp\php\ext\php_imagick.dll.

Also, the imagick is shown in the phpinfo().

And when i use it using laravel i get the following error.


回答1:


getting Imagick to work on windows has always been a bit hit and miss as pointed out here is a good guide http://stackoverflow.com/a/36378764/1090867

But it misses an important point

You do not need to put the binary into the PHP folder!

So here are the steps I follow myself everytime I need to do this. This should work for apache, nginx or IIS.

Step 1

find out your php version and setting

You need to version, Architecture, Compiler and Thread Safety

if Thread Safety is disabled this is NTS is enabled it will TS

Step 2

Get an install a copy of imageMagick it just make sure it mataches your Architecture, this also needs to be dll.exe rather that the static version.

Regarding Q8 and Q16 I'll leave that you to you but both versions will work

Link

I recommend changing the install directory name to something geneeric like C:\Imagemagick since I've had some problems in the past with te default directory name with PHP and windows.

Just install but make sure you tick add application path and I normally tick the legacy utils as well.

Once its install go to your environment variables and make sure it is actually in the path. There is no need to copy anything to your php folder

Just to make sure everything is working open the command line and type convert --version you should get a reponse

Step 3

This unfortantly is the hard part and can be a bit of trial and error. I've found the following provides the best php_imagick.dll that seems to work 9 times out of 10

http://www.peewit.fr/imagick/

Just pick the version that matches your install.

If this doesn't work then go to php.net and try each version until one works... (start at the latest)

http://windows.php.net/downloads/pecl/releases/imagick/

Once you have a php_imagick.dll put it into your php/ext/ folder

thne locate your php.ini file go to the bottom (or whereever your extensions are) and add extension=php_imagick.dll

Step 4

Restart PHP (or your computer) and it should be working if not try a different php_imagick.dll and repeat.

If the above doesn't work

Then try a slightly older version of imagick I normally use version 6.8.6-8 Q16.

Please note I've only every really done this on Windows 7 and Windows Server 2008, 2008 R2, 2012 and 2012 R2 all x64 with x86 php

If this still doesn't work then you probably need to copy over the CORE_RL files into your imagick directory this normally causes more issues but if you are running out idea then give it a go




回答2:


I just ran into this issue. Only I'm using PHP on the command line (PHP CLI). The problem is the dependencies that the main php_imagick.dll file has. PHP will attempt to load the extension but since Windows can't find the CORE_RL_ DLLs, the extension will fail to load and the error/warning message about being unable to load the DLL will appear. It helps to know how Windows loads DLLs:

https://msdn.microsoft.com/en-us/library/windows/desktop/ms682586(v=vs.85).aspx

It's pretty convoluted but you can see that the reason the Apache /bin directory trick works with Apache is that httpd.exe is located in that directory. However, when using PHP CLI, the DLLs need to be located in the same directory as php.exe.

If you don't want duplicate DLLs floating around, add the directory containing php.exe to the system PATH and plop all the CORE_RL_ DLLs there. The PATH is the last thing searched, but it'll work fine. If you don't want spurious entries in your system PATH, then set the extra PATH information only during startup of Apache.



来源:https://stackoverflow.com/questions/39609951/cannot-load-imagick-library

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!