新的 imagick 不起作用
我已经在本地服务器Xampp中设置了imagick的环境和配置。当我像这样使用 exec 时,它效果很好:
exec("convert source.jpg des.png");
然后我想以 OOP 方式执行此操作,所以我尝试这样做:
$image=new Imagick("filepath");
$image->setImageFormat('png');
echo $image;
但这最终会出现一个页面,显示“该网页不可用”, 然后我尝试删除文件路径并尝试创建一个空对象,例如:
$image=new Imagick();
并且这不会出现任何错误。有谁知道可能是什么原因吗?这里的一篇文章提到要查看日志,但我不知道日志在哪里,有人可以帮助我吗?多谢。
I have set up the environment and configuration for the imagick in local server Xampp. it works well when I user exec like:
exec("convert source.jpg des.png");
then I want to do it in OOP way, so I attempt this with:
$image=new Imagick("filepath");
$image->setImageFormat('png');
echo $image;
but this ends up with a page saying "the web page is not available",
then I try to remove the filepath and just try to create an empty object like:
$image=new Imagick();
and this does not appear any errors. does any body know what may be the reason? one of posts in here mentioned to look at the log, but I don't know where the log is, can somebody be kind to help me? thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否将“文件路径”作为字符串传递(即名为“文件路径”的图像)?
尝试打开所有 PHP 警告
Are you passing "filepath" as a string (i.e. an image called "filepath")?
Try to turn on all PHP warnings