我正在尝试从 url 下载图像,然后对其进行解码。问题是我不知道它们有多大,如果我立即解码它们,应用程序会因图像太大而崩溃。
我正在执行以下操作,它适用于大多数图像,但对于其中一些图像,它会引发java.io.IOException: Mark has been invalidated
异常。这不是大小问题,因为它发生在 75KB 或 120KB 的图像上,而不是 20MB 或 45KB 的图像上。此外,格式并不重要,因为它可能发生在 jpg 或 png 图像中。
pis
是一个InputStream
。
Options opts = new BitmapFactory.Options();
BufferedInputStream bis = new BufferedInputStream(pis);
bis.mark(1024 * 1024);
opts.inJustDecodeBounds = true;
Bitmap bmImg=BitmapFactory.decodeStream(bis,null,opts);
Log.e("optwidth",opts.outWidth+"");
try {
bis.reset();
opts.inJustDecodeBounds = false;
int ratio = opts.outWidth/800;
Log.e("ratio",String.valueOf(ratio));
if (opts.outWidth>=800)opts.inSampleSize = ratio;
return BitmapFactory.decodeStream(bis,null,opts);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}