我想创建一个gif,我使用AnimationDrawable创建了一个动画,如下所示。
for (Bitmap bitmap: bitmaps) {
animation.addFrame(new BitmapDrawable(getResources(), bitmap), duration);
}
animation.setOneShot(false);
mImageView.setImageDrawable(animation);
现在我想把它保存为gif。我该怎么办呢?
我尝试使用这两个库:
https://github.com/nbadal/android-gif-encoder,https://gist.github.com/wasabeef/8785346
它们都是相同的,当我只保存一个时,会显示第一张图像。 谁能帮忙。谢谢!