Home > Backend Development > PHP Tutorial > window php imagick 保存图片不成功

window php imagick 保存图片不成功

WBOY
Release: 2016-06-23 14:38:17
Original
948 people have browsed it

问题: 在 windows下  imagick::writeImage()成功图片不成功,也没有返回值  不知道为什么?但是在linux下是可以成功成功的。
但是
$this->image = new Imagick($path);//$path   保存图片的路径;
......(设置图片的一些属性,代码省略)
方法一:$this->image->writeImage($path);         不成功
方法二:file_put_contents($path, $this->image);  成功

imagick版本:ImageMagick-6.8.7-7-Q16-x86-dll.exe
php版本:5.4.16


求大神告知原因


回复讨论(解决方案)

imagick比较麻烦,PHP跟imagick的版本有兼容性问题,得找到合适匹配的版本才行。

如果仅仅是
方法一:$this->image->writeImage($path);         不成功
方法二:file_put_contents($path, $this->image);  成功
那并不是 ImageMagick 的问题,而是你的问题!
1、可能是路径中带有中文
2、可能路径是含有空格的长路径名
3、可能是将相对路径当绝对路径处理了

多谢版主提示,问题确实处在了路劲上。

把路劲改成绝对路径  就搞定了

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template