Android - 无需压缩即可在移动存储上保存位图图像

时间:2015-10-05 00:23:37

标签: java android image bitmap

从远程网址保存位图图像的典型方法(基于研究)是:

Bitmap bmImage = null;

InputStream in = new java.net.URL(imageUrl).openStream();
bmImage = BitmapFactory.decodeStream(in);

File file = new File(myPath);

FileOutputStream outputStream;
outputStream = new FileOutputStream(file);

bmImage.compress(Bitmap.CompressFormat.PNG, 100, outputStream);

outputStream.close();

我无法保存位图,除非它被压缩(位图始终是未压缩的)。 远程图像大小为32KB,压缩后得到110KB。 我知道我必须降低压缩参数以获得更小的尺寸,但远程图像是优化的,效率更高。

有没有办法可以将远程图像保存在移动存储上而不进行压缩?

===== 回答我的问题 =====

首先,我为误导内容道歉;我想要的只是保存可能是png | jpeg | gif |等的图像。可能我误导了你们,我试图保存的图像是BMP格式,但事实并非如此。

尽管如此,对于那些想要在不进行压缩的情况下保存图像的人,请查看answer

1 个答案:

答案 0 :(得分:2)

使用AndroidBmpUtil,如下面的代码所示:

new AndroidBmpUtil().save(bmImage, file);