-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add php-imagick dependencies #2
base: master
Are you sure you want to change the base?
Conversation
this could clash with the core imagemagick installation because it adds itself to the path! It has to be in the path that the extension works correctly
Does it work with ImageMagick version Is it just me or does the version change if |
@r15ch13 here is same |
Same here for the version difference on the webpage @r15ch13 php 7.1.6 is compiled against imagemagick 6.9.3-7. Using a newer release does not work,
I tried it with The DLL files from the old imagemagick version have to be in the PATH. What about deleting all the |
What if the ImageMagick DLLs are placed in the same directory as |
No, they would need to be placed along the |
I added the |
Please wait with merging
Problem
I tracked down the error I get from the
php-imagick
extensionIt is because imagick depends on the correct imagemagick installation.
Hint, the
imagemagick
package from scoop core does not work ;-)Solution
The correct version has to be grabbed from http://windows.php.net/downloads/pecl/deps/
Unpacked somewhere and the
bin
directory has to be added to thePATH
and a new environment variableMAGICK_HOME
.Then
php-imagick
loads correctly.Problem
Adding the imagemagick dependency to the $PATH overwrites the core imagemagick installation if present and could lead to problems if it is installed …
@r15ch13 do you have an idea how to solve this?