4

Android 用のアニメーション GIF を作成する最もパフォーマンスの高い方法は何ですか? アニメーション化が必要なビットマップのセットがあります。インターネット上にある AnimatedGifEncoder クラスでは問題なく動作しますが、パフォーマンスに関しては非常に遅いです。ビットマップのセットをアニメーション GIF にエンコードする他の方法はありますか?

ありがとう

4

1 に答える 1

-1

Android actually can decode and display animated GIFs, using android.graphics.Movie class.

This is not too much documented, but is in http://developer.android.com/reference/android/graphics/Movie.html.

Moreover, it is used in https://code.google.com/p/apidemos/source/browse/trunk/ApiDemos/src/com/example/android/apis/graphics/BitmapDecode.java#103 example with some animated flag.

thanks to Pointer Null

于 2013-10-10T13:50:15.357 に答える