如何将GIF压缩为位图而不是JPEG或PNG文件?

时间:2017-10-19 18:59:32

标签: java android bitmap compression gif

我知道如何将JPEG或PNG图像压缩成位图。问题是我的图像是一个GIF图像。有没有人有压缩GIF到Bitmap的解决方案?

         ByteArrayOutputStream stream = new ByteArrayOutputStream();
      si.Image.compress(CompressFormat.JPEG, 100, stream);
     InputStream is = new ByteArrayInputStream(stream.toByteArray());

因此这种格式压缩.JPEG。我怎么能压缩GIF?

0 个答案:

没有答案