如何在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()

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...