RMagick 动画 gif 错误
我在使用 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 ().
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须简单地使用
Magick::Image.read(url)
You have to use simply
Magick::Image.read(url)