微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在android中通过两个位图制作gif图像

我只是想从2个位图图像制作动画gif图像,我将从相机中获取并想要邮寄那个gif图像.

最佳答案
http://jiggawatt.org/badc0de/android/index.html#gifflen有本地图书馆

I’ve written a small native lib for Android to do color quantization (from 2-256 colors) of a Bitmap and save the result as a frame in an animated GIF (you can add as many frames as you like).
You may hack and slash the library code as you wish to fit your needs. The color quantizer used is Anthony Dekker’s NeuQuant,with some modifications made by me.

对于基于java的库,请尝试http://www.jappit.com/blog/2008/12/04/j2me-animated-gif-encoder/

Usage is quite straightforward,and it requires these steps:
Instantiate your AnimatedGifEncoder object
Start it,by passing an OutputStream as argument (e.g.: a ByteArrayOutputStream)
Add your Image objects by using addFrame() method
Finalize it by calling finish()

原文地址:https://www.jb51.cc/android/430515.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐