How to install Imagick/imagemagick PHP extension on windows 7

76,868

Solution 1

Check permissions on the .dll file to make sure the Apache user has read access to the file. Better change the permission of the [PHP]/extension directory.

To change the permission

  1. Right click the file(s) or folder(s)
  2. Select "Properties"
  3. Select "Security" tab
  4. Click on "Edit" button.

Change the permission of user to Full Control.

Solution 2

  • Download the binaries on the PECL page (look for the "DLL" links).
  • Open the archive, copy all the *.dll files to the "php\ext" directory.
  • Add the extension to your php.ini:

    • Usually you should add extension=php_imagick.dll.
    • On some WAMP platforms, it might be instead extension=ext/php_imagick.dll. Just look how the existing extensions are defined and do alike.
  • Restart web server.


At this point, Imagick is installed, but you will probably encounter this error:

ImagickException: NoDecodeDelegateForThisImageFormat

It means you have to install ImageMagick as well:

  • On this page, download the ImageMagick archive corresponding to the Imagick you have installed (MSVC version, CPU architecture).
  • Open "bin" directory of this archive, copy the *.dll files to the "php\ext" directory. For example, you'll need IM_MOD_RL_jpeg_.dll for JPEG handling.

Solution 3

Here are Windows binaries for imagick 2.3.0 compiled with VC6 (you can find VC9 binaries at Mikko’s blog) against PHP 5.3.2 (API20090626).

Try this link

Solution 4

This may be hitting a nail with a 5-pound hammer, but I like Cygwin, a Unix-like environment for Windows; it includes imagemagick as a package.

Solution 5

I've research this solution, here you will find all necessary libraries. Download this http://image_magick.veidrodis.com/image_magick/binaries/ImageMagick-6.6.2-10-Q16-windows-dll.exe

Find your DLLs here http://www.peewit.fr/imagick/

To know which library fit your needs easily run phpinfo()

There you find the following row e.g.

Compiler MSVC9 (Visual C++ 2008)

The MSVC9 tells you that it's compiled with Visual C9, so you need to download the VC9 version. Thats all.

Have nice day, takes me several hours of research.

Share:
76,868
DEVOPS
Author by

DEVOPS

Updated on September 25, 2020

Comments

  • DEVOPS
    DEVOPS almost 4 years

    How to install image magic in Windows 7. I followed these instruction

    To install IMagick on Windows XP (php 5.2.x)

    1. download and install ImageMagick-6.5.8-7 Q16-windows-dll.exe http://www.imagemagick.org/download/binaries/ ImageMagick-6.5.8-7-Q16-windows-dll.exe

    2. download php_imagick_dyn-Q16.dll from: http://valokuva.org/outside-blog-content/ imagick-windows-builds/080709/

      copy dll to [PHP]/extension dir and rename it to php_imagick.dll

    3. You have to edit your php.ini file and add new extension

      extension=php_imagick.dll
      
    4. Save ini file and restart apache server.

      (If necessary, restart your windows)

    5. phpinfo() should show imagick enabled.

    after that I execute a sample script but its not working. It shows the Imagic class missing error.

    Fatal error: Class 'Imagick' not found in C:...\imgborder.php on line XXX

    Please help me to install Imagick. :-(

  • azerafati
    azerafati over 8 years
    this worked for me, but in the last steps, after copying .dll files. I still get the error unable to load module .. IM_MOD_RL_PDF_.dll, any thought??
  • Gras Double
    Gras Double over 8 years
    One possibility is that the files are compiled with different versions of MSVC. Also, a note has been added in Imagick README: Installing on Windows. Check out the files they are linking to.
  • Gras Double
    Gras Double over 8 years
    @Bludream I have updated my answer following our comments above. Does it work for you now?
  • TheStoryCoder
    TheStoryCoder about 8 years
    I prefer to copy all the DLL files from ImageMagick's bin folder to it's own folder somewhere and just add that folder to my PATH environment variable. Then I don't make a mess in the php/ext folder.
  • Bonzo
    Bonzo about 7 years
    So you recommend installing another piece of software to install Imagemagick? Imagemagick installs without a problem and if you read the question fully the OP is having a problem with Imagick. Basically the confusion comes from the OP's question title and tags. I have added the Imagick tag and Imagick to the title.
  • Jonathan
    Jonathan almost 6 years
    @Bonzo Technically you don't have to install chocolatey as a seperate peice of software anymore, Windows Powershell now has the ability to set chocolatey packages as a repository, then you can install imagemagick via powershell, which is built into windows.
  • Jonathan
    Jonathan almost 6 years
    @Bonzo you're right about his title/tags. I recommended a title edit