Where to find php_imagick.dll for php 5.5.12 for Windows wampserver 2.5?(在哪里可以找到适用于 Windows wampserver 2.5 的 php 5.5.12 的 php_imagick.dll?)
问题描述
我在 Windows 7(32 位)上使用 Wampserver 2.5,我的 PHP 版本是 5.5.12.我无法使用 IMAGICK.
I am using Wampserver 2.5 on my Windows 7 (32 bit) and my PHP version is 5.5.12. I am unable to use IMAGICK.
我已经在我的系统上安装了 IMAGICK 6.8.9 版,它在命令行上运行起来就像魅力一样.
I have installed IMAGICK version 6.8.9 on my system and it works like charm on the command line.
此外,我已按照说明在我的 wampserver 上启用它.
Further, I have followed instructions to enable it on my wampserver.
- 在 Appache 的 httpd.conf 中插入了SetEnv MAGICK_HOME C:/imagemagick".
- 已下载php_imagick-3.1.2-5.5-ts-vc11-x86.zip
- 将 php_imagick.dll 从 zip 复制并粘贴到 Appache 中的 php.ini.
- Inserted "SetEnv MAGICK_HOME C:/imagemagick" in httpd.conf at Appache.
- Downloaded php_imagick-3.1.2-5.5-ts-vc11-x86.zip
- Copied and pasted the php_imagick.dll from zip to php.ini at Appache.
在 php 上运行一个简单的脚本时 [$a = new Imagick()] 我收到错误 [Class 'Imagick' not found].
While running a simple script on php [$a = new Imagick()] I get the error [Class 'Imagick' not found].
请指导我正确的安装方式和正确的下载,以便在 Wampserver 2.5/Windows 7/32 位/PHP 5.5.12 上安装 IMAGICK.
Kindly direct me to the right way of installation and the right downloads to install IMAGICK on Wampserver 2.5 / Windows 7 / 32bit / PHP 5.5.12.
推荐答案
在Wamp、Xampp和IIS上手动安装imagick
- 在 php/ext 文件夹中创建一个文件夹 imagick.
- 现在将这个新创建的 php/ext/imagick 文件夹添加到 windows 路径中.
- 从此链接下载适用于 Windows 的最新版本的 imagick.http://windows.php.net/downloads/pecl/releases/imagick/
- 从此链接下载 imagick 的 php 扩展.http://windows.php.net/downloads/pecl/deps/
- 在下载这 2 个 zip 文件之前,请将您的安装文件名与您的 php.ini 文件名匹配.例如.php_imagick-3.2.0b2-5.5-nts-vc11-x86.zip
-这里5.5是php的版本
-nts 适用于 IIS 和 windows (wamp),ts 适用于 Apache 和 Linux (xampp)
-VC11 和 VC9 是编译版本,运行 phpinfo 并检查它是否与您的 php 版本匹配.
-x86 适用于 32 位 x64 适用于 64 位机器,我建议仅使用 x86 - 一旦你为你的 php 下载了正确的版本,将下载的文件解压到你添加到路径的 imagick 文件夹中,将所有文件从 bin 文件夹带到 imagick 的根目录并全部替换
- 在 php.ini 中添加 php_imagick.dll 的完整路径,如 extension=C:wampphpextimagickphp_imagick.dll
- 重新启动计算机以使路径生效.然后打开命令并输入 dcraw 并按回车键.如果您正确添加了路径,则会显示参数列表,您的 Imagick 已成功安装.
- 再次运行 phpinfo,您将看到 Imagick 列为扩展名.
这篇关于在哪里可以找到适用于 Windows wampserver 2.5 的 php 5.5.12 的 php_imagick.dll?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在哪里可以找到适用于 Windows wampserver 2.5 的 php
基础教程推荐
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01