新的 imagick 不起作用

发布于 2024-11-26 18:45:46 字数 441 浏览 1 评论 0原文

我已经在本地服务器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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人问我粥可暖 2024-12-03 18:45:47

您是否将“文件路径”作为字符串传递(即名为“文件路径”的图像)?
尝试打开所有 PHP 警告

Are you passing "filepath" as a string (i.e. an image called "filepath")?
Try to turn on all PHP warnings

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文