我正在尝试下载1mb图像文件,然后保存到位图以填充图像视图。 但显示错误
06-13 13:39:48.149: ERROR/AndroidRuntime(1782):
java.lang.OutOfMemoryError: bitmap size exceeds VM budget
如何下载大图?
答案 0 :(得分:3)
我遇到过同样的问题。在将下载的位图设置为ImageView
之前,您必须根据ImageView
的宽度和高度压缩位图。
你必须像这样创建一个缩放的位图,
bm1=Bitmap.createScaledBitmap(bm, 300, 300,true);
imgView.setImageBitmap(bm1);
或像这样压缩你的位图,
OutputStream fOut = null;
File file = new File(strDirectoy,imgname);
fOut = new FileOutputStream(file);
bm1.compress(Bitmap.CompressFormat.JPEG, 85, fOut);
fOut.flush();
fOut.close();
MediaStore.Images.Media.insertImage(getContentResolver(),file.getAbsolutePath(),file.getName(),file.getName());