如何在 UIWebView 上插入 UIImage
我正在尝试在 UIImageView 中显示动画 GIF 图像。因为这样只显示第一帧,所以我想尝试不同的方法。
UIWebView。
如何获取内存中的动画 GIF (NSData) 以显示在包含所有帧的 UIWebView 上......?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
感谢托马斯的回复,我不知道它是否有效,因为我现在自己做到了。
解码 GIF 已经一个多星期了,但仍然没有成功,所以我从 UIImageView 转到 UIWebView 和以下代码让它发挥作用..
Thanks Thomas for you response, i don't know if it works because i managed to do it myself now..
Been decoding the GIFs for more then a week now and still with no succes so i went from UIImageView to UIWebView and the following code made it work..
我还没有尝试过,但是类似这样的事情:
您需要一个实现转换为 base64 的
NSData
类别,这应该不难找到(我已经添加了书签 http://cocoawithlove.com/2009/06/base64-encoding-options- on-mac-and.html)编辑:另一种方法是解码 gif,这样你就有了一个帧的 NSArray : http://pliep.nl/blog/2009/04/iphone_developer_decoding_an_animated_gif_image_in_objc
http://blog.stijnspijker.nl/2009/07/animated-and-transparent-gifs-for-iphone-made-easy/
I've not tried it, but something like this :
You'll need a
NSData
category that implements converting to base64, that shouldn't be difficult to find (I've bookmarked http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html)edit: another way is to decode the gif, so you have an NSArray of the frames : http://pliep.nl/blog/2009/04/iphone_developer_decoding_an_animated_gif_image_in_objc
http://blog.stijnspijker.nl/2009/07/animated-and-transparent-gifs-for-iphone-made-easy/