RMagick 动画 gif 错误

发布于 2024-11-18 21:04:15 字数 823 浏览 4 评论 0原文

我在使用 RMagick 读取 http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif (问题图像)。

require 'open-uri'
require 'rmagick'
url = 'http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif'
Magick::Image.from_blob(open(url).read)

它给出了一条错误消息,例如“in from_blob:损坏的图像@ error/gif.c/ReadGIFImage/1331 (Magick::ImageMagickError)”。

我已阅读该文档( http://www.imagemagick.org/RMagick/ doc/image1.html#from_blob ),它说 from_blob 可以处理动画 GIF。

该代码适用于许多图像,但只有这一张。任何 RMagick 用户对这个错误有一些了解吗?

I have encountered ImageMagickError when using RMagick to read a animated GIF of http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif (The problem image).

require 'open-uri'
require 'rmagick'
url = 'http://us.i1.yimg.com/us.yimg.com/i/mesg/emoticons7/20.gif'
Magick::Image.from_blob(open(url).read)

It gives an error message like "in from_blob : corrupt image @ error/gif.c/ReadGIFImage/1331 (Magick::ImageMagickError)".

I have read the document ( http://www.imagemagick.org/RMagick/doc/image1.html#from_blob ) and it says from_blob can handle an animated GIF.

The code works with many images but this one. Anyone RMagick user have some idea about the error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

○愚か者の日 2024-11-25 21:04:15

您必须简单地使用 Magick::Image.read(url)

You have to use simply Magick::Image.read(url)

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