Steps I\'ve taken so far:
I have php 5.6 NTS x64
installed on Windows 8.1 pro for my Development System.
EDIT: This procedure worked with Windows 10 pro as well.
I was unable to get Imagick Working with PHP using an older release of ImageMagick as in the accepted answer and it was difficult to find mirrors with the exact safe binaries needed (the binaries on the mirror in the accepted answer downloaded as different versions than listed).
In all of the steps below, be sure to match your PHP architecture (x86/x64 and NTS/TS) to the binary's architecture. If you are using PHP x86 - replace the x64 version of the downloads with the x86 (or 32bit) version. The same applies to Thread-Safe (TS) and Non-Thread-Safe (NTS) versions of PHP.
(3.3.0RC1)
at time of this answer.
php_imagick.dll
to D:\php5.6\ext
CORE_RL_*.dll
files to D:\php5.6
- Ensure D:\php5.6
is also added to the PATH
of your system environment variablesextension = php_imagick.dll
to D:\php5.6\php.ini
(ImageMagick 6.9.1-2 Q16 x64)
and the missing supported formatsD:\php5.6\bin
from http://www.imagemagick.org/script/binary-releases.php - Ensure that the Add Path to Environment Variables
option is checked or manually add it convert --version
displays the correct version CORE_RL_*.dll
files in D:\php5.6
(they will be loaded via ImageMagick path - otherwise your PHP installation may become unstable with the PECL dlls)D:\php5.6\bin
to be able to convert PDFs to images from http://sourceforge.net/projects/ghostscript/ be sure to match the architecture for your installationI did not need to add MAGICK_HOME
for Imagick to work using the PHP Built-In Web Server or CGI, but may be required for Apache using mod_php
. See the Special Considerations section below for additional details.
You can alternatively download the required ImageMagick version dependencies and extract the exe
and dll
files from within the bin
directory directly into your D:\php5.6
directory.
The dependencies can be found on PECL website http://windows.php.net/downloads/pecl/deps/
Using the PECL dependencies removes the need to directly download and run the matching ImageMagick version installer from the vendor's website.
With the PECL dependencies method there were issues with excluded files needed for PDF conversions using GhostScript.
Be sure the user running PHP has permission to execute convert
. This should be inherited via D:\php5.6\bin
but in case you chose to install to C:\Program Files
. you may have issues due to its restricted permissions.
Be sure to rearrange your PATH
System Environment Variable so that %SystemRoot%\system32\convert.exe
does not override the D:\php5.6\bin\convert.exe
.
By adding your PHP path to the left of system32, like so: PATH: D:\php5.6\bin;%SystemRoot%\system32;%SystemRoot%;...
This will force your system to look for executable files within D:\php5.6\bin
prior to %SystemRoot%\system32
Replace D:\php5.6\bin\convert.exe
with the path to where you installed ImageMagick or the path to where convert.exe
is located
https://technet.microsoft.com/en-us/library/cc723564.aspx#XSLTsection127121120120