如何使用 PHP5+Imagick 从远程 URL 正确打开图像?
我尝试了这段代码:
$image = new Imagick();
$f = fopen('http://www.url.com/image.jpg', 'rb');
$image = readImageFile($f);
但它不起作用。 另外,我相信这不是最好的方法,我希望代码包含最佳实践(现在不管它听起来多么荒谬)。 在同一台服务器上,使用 GD 库的这段代码运行得很好。
$im = imagecreatefromjpeg('http://www.url.com/image.jpg');
我错过了 Imagick 手册中的某些内容吗?
I tried this code:
$image = new Imagick();
$f = fopen('http://www.url.com/image.jpg', 'rb');
$image = readImageFile($f);
but it doesn't work.
Also, I believe it's not the best way to do it and I want the code to include best practices (now matter how ridiculous it sounds).
On the same server, this code, using GD library, works just fine.
$im = imagecreatefromjpeg('http://www.url.com/image.jpg');
Did I miss something in Imagick manual?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试替换:
与
try replacing:
with