文件名称:android bitmap内存溢出
文件大小:3KB
文件格式:TXT
更新时间:2016-09-08 11:04:55
内存溢出
Bitmap bitmap = BitmapFactory.decodeFile(imageFile, opts); 设置inJustDecodeBounds为true后,decodeFile并不分配空间,但可计算出原始图片的长度和宽度,即opts.width和opts.height。有了这两个参数,再通过一定的算法,即可得到一个恰当的inSampleSize。