我正在寻找一种在原生Android应用程序中创建动画GIF的简单方法。 源文件应为JPEG(来自相机或任何),输出应保存为设备上的GIF。
我不想知道如何播放动画或动画GIF文件。
要明确:我想知道如何将单个图像逐帧放入“电影”中,然后将其另存为.gif文件。
e.g。 This App可以做我想做的事。
答案 0 :(得分:53)
请参阅此解决方案。
https://github.com/nbadal/android-gif-encoder
这是这篇文章的Android版本。
http://www.jappit.com/blog/2008/12/04/j2me-animated-gif-encoder/
要使用此类,这是一个生成GIF字节数组的示例辅助方法。请注意,getBitmapArray()函数是一种立即返回图像适配器中所有Bitmap文件的方法。因此输入是一个适配器中的所有Bitmap文件,输出是一个字节数组,您可以写入该文件。
public byte[] generateGIF() {
ArrayList<Bitmap> bitmaps = adapter.getBitmapArray();
ByteArrayOutputStream bos = new ByteArrayOutputStream();
AnimatedGifEncoder encoder = new AnimatedGifEncoder();
encoder.start(bos);
for (Bitmap bitmap : bitmaps) {
encoder.addFrame(bitmap);
}
encoder.finish();
return bos.toByteArray();
}
要使用此功能,请执行以下操作,然后将文件保存到SD卡中。
FileOutputStream outStream = null;
try{
outStream = new FileOutputStream("/sdcard/generate_gif/test.gif");
outStream.write(generateGIF());
outStream.close();
}catch(Exception e){
e.printStackTrace();
}
答案 1 :(得分:6)
这可能会对你有所帮助。它是一个用于生成gif文件的类。
答案 2 :(得分:3)
如果您只想像动画gif一样显示这些位图,可以使用以下代码创建 AnimatedDrawable :
AnimationDrawable animation = new AnimationDrawable();
animation.addFrame(getResources().getDrawable(R.drawable.image1), 10);
animation.addFrame(getResources().getDrawable(R.drawable.image2), 50);
animation.addFrame(getResources().getDrawable(R.drawable.image3), 30);
animation.setOneShot(false);
ImageView imageAnim = (ImageView) findViewById(R.id.imageView);
imageAnim.setImageDrawable(animation);
// start the animation!
animation.start();
答案 3 :(得分:3)
它对我来说非常好,它创建文件快速和高质量的图像
//True for dither. Will need more memory and CPU
AnimatedGIFWriter writer = new AnimatedGIFWriter(true);
OutputStream os = new FileOutputStream("animated.gif");
Bitmap bitmap; // Grab the Bitmap whatever way you can
// Use -1 for both logical screen width and height to use the first frame dimension
writer.prepareForWrite(os, -1, -1)
writer.writeFrame(os, bitmap);
// Keep adding frame here
writer.finishWrite(os);
// And you are done!!!
答案 4 :(得分:1)
解决方案1
你看过这篇文章吗? .....这是源代码..据我所知,我认为android不会播放gif动画图片。您应该使用将播放gif动画的webview ..
http://droid-blog.net/2011/10/14/tutorial-how-to-use-animated-gifs-in-android-part-1/
如果可以..
http://androidosbeginning.blogspot.in/2010/09/gif-animation-in-android.html
解决方案2
Android提供Drawable Animation。
答案 5 :(得分:0)
Gif基本上是一组在帧中具有恒定时间延迟的图像。你不能直接在android中玩gif。我在Android上玩gif动画很多。
当玩gif时我们也会处理所有播放帧的调用 自。所以这不是最好的方法
如果您有一组图像,只需按帧延迟播放即可。那 将是你想要的一切。
您也无法通过本机代码在应用程序中生成gif。有 使用gif格式也有一些缺点。我在游戏中面临的一切。
如果您有一组drawable,您可以使用AnimationDrawable来显示像gif一样的动画。它还可以设置任何视图。
我还制作了一个自定义视图来播放gif动画。 首先我加载gif并将其转换为InputStream,然后将其传递给我的自定义视图类以播放gif。
public class GifWebView extends View {
private Movie mMovie;
InputStream mStream;
long mMoviestart;
private boolean play;
public GifWebView(Context context, InputStream stream) {
super(context);
mStream = stream;
setPlay(true);
mMovie = Movie.decodeStream(mStream);
}
@Override
protected void onDraw(Canvas canvas) {
canvas.drawColor(Color.TRANSPARENT);
super.onDraw(canvas);
final long now = SystemClock.uptimeMillis();
if (mMoviestart == 0) {
mMoviestart = now;
}
final int relTime = (int) ((now - mMoviestart) % mMovie.duration());
mMovie.setTime(relTime);
mMovie.draw(canvas, 20, 20);
if (play) {
Log.i("reltime", "" + relTime + ",duration:" + mMovie.duration());
this.invalidate();
}
}
@Override
public boolean onTouchEvent(android.view.MotionEvent event) {
return true;
};
public boolean isPlay() {
return play;
}