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

前端之家收集整理的这篇文章主要介绍了如何在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.f2er.com/android/430515.html

猜你在找的Android相关文章