将.GIF图像保存到文件中

时间:2011-12-15 12:53:41

标签: android image file save gif

  

可能重复:
  Android make .Gif out of Bitmaps

如何将.GIF图像写入文件?

我知道如何使用.PNG类型:

Bitmap bitmap = ((BitmapDrawable)drawableImagen).getBitmap();

String imagen = "Imagen.png";
   try {
        FileOutputStream out = openFileOutput(imagen, MODE_PRIVATE);
        bitmap.compress(Bitmap.CompressFormat.PNG, 90, out);
    } catch (Exception e) {
        e.printStackTrace();
    }

对于.GIF图像类型,有没有类似的方法?

方法“bitmap.compress()”仅支持PNG,JPEG和WEBP。

我要写入文件的图像很大(480x320)

0 个答案:

没有答案