


Download the imagick components of various versions of php5.2.17, php5.3.18 and php5.4.8 under windows
Recently, I spent a lot of time installing the imagick extension for php under windows 2003 and iis 6. I saw a lot of information, some of which were wrong. Now I list the commonly used files. Friends in need can download them. Of course, it will also facilitate my next installation and debugging. There are no files suitable for apache provided here. You can go to the corresponding website to find them:
1, PHP5.2.17 I installed it successfully. I used the Xingwai PHP5.2.17 direct installation program. Download the imagick version as follows:
http://valokuva.org/outside-blog-content/imagick-windows-builds/080709/php_imagick_st-Q16.dll
(Backup download http://www.zzzyk.com/upload/20121109/php_imagick_st-Q16.dll)
already contains imagemagick, no need to install anything, directly copy php_imagick_st-Q16.dll to the c:phpext directory
Then Add: extension=php_imagick_st-Q16.dll to the php.ini extension. The simplest and greenest method
ps: There are also such things as php_imagick_st-Q8.dll (8 colors), php_imagick_dyn-Q16.dll (requires imagemagick to be installed). You must take care of them
PHP5.2.17 official corresponding http://windows.php.net/downloads/releases/php-5.2.17-nts-Win32-VC6-x86.zip
Recommended to download the extra-terrestrial version http:/ /www.zzzyk.com/upload/20121109/php5.2.17.rarThe installation is very simple. Basically, you can use php
2 and PHP5.3.18. Imagemagick must be installed. There is no single file dll available
1 ) Download http://www.imagemagick.org/download/binaries/ImageMagick-6.8.0-4-Q16-windows-dll.exe
2) Download php_imagick according to your php installation mode
No thread safety: http ://valokuva.org/builds/ext/vc9/nts/imagick/2011-04-25_1849/php_imagick_nts.dll
(Backup download: http://www.zzzyk.com/upload/20121109/php_imagick_nts__PHP5318.dll)
(Usually fastcgi under iis6 corresponds to http://windows.php.net/downloads/releases/php-5.3.18-nts-Win32-VC9-x86.zip)
Thread safety: http://valokuva.org/builds/ ext/vc9/ts/imagick/2011-04-25_1849/php_imagick_ts.dll
(Backup download: http://www.zzzyk.com/upload/20121109/php_imagick_ts__PHP5318.dll)
(I no longer use isapi’s php counterpart http://windows.php.net/downloads/releases/php-5.3.18-Win32-VC9-x86.zip)
Copy to the c:phpext directory and add an extension, for example: extension=php_imagick_nts.dll
3. PHP5.4.8 must be installed. Imagemagick has no available single file dll.
1) Download http://www.imagemagick.org/download/binaries/ImageMagick-6.8.0-4-Q16-windows-dll. exe
2) Download php_imagick
Thread-safe according to your PHP installation mode: http://www.peewit.fr/imagick/vc9/x86/nts/php_imagick.dll
(Backup download: http://www.zzzyk .com/upload/20121109/php_imagick_nts.dll)
(corresponds to http://windows.php.net/downloads/releases/php-5.4.8-nts-Win32-VC9-x86.zip)
Thread safety: http: //www.peewit.fr/imagick/vc9/x86/ts/php_imagick.dll
(Backup download: http://www.zzzyk.com/upload/20121109/php_imagick_ts.dll)
(corresponds to http://windows .php.net/downloads/releases/php-5.4.8-Win32-VC9-x86.zip)
Copy to the c:phpext directory and add an extension, for example: extension=php_imagick.dll
I have tested the above installation. After installation, restart iis, and then check phpinfo to see if there is imagick. If not, please check the permissions or do it again. Friends who like to debug vc are also welcome to adjust the latest version of imagemagick to a dll suitable for windows2003+iis platform.
Reprint: http://wapapp.baidu.com/zhaoxinet/item/1cefc7327ff0030bceb9fe3d
The above introduces the download of imagick components of various versions of php5.2.17, php5.3.18 and php5.4.8 under windows, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
