使用android提供的BitmapFactory解碼一張圖片時产上,有時會遇到該錯誤,即:java.lang.OutOfMemoryError: bitmap size exceeds VM budget仪媒。這往往是由于圖片過大造成的谢鹊。要想正常使用,一種方式是分配更少的內(nèi)存空間來存儲佃扼,即在載入圖片的時候以犧牲圖片質(zhì)量為代價,將圖片進行放縮压昼,這也是不少人現(xiàn)在為避免以上的OOM所采用的解決方法翠订。但是,這種方法是得不償失的尽超,當我們使用圖片作為縮略圖查看時候倒是沒有說什么,但是傲绣,當需要提供圖片質(zhì)量的時候巩踏,該怎么辦呢?java.lang.OutOfMemoryError: bitmap size exceeds VM budget著實讓不少人欲哭無淚呀菠净!前幾天剛好有個需求需要載入SD卡上面的圖片彪杉。
首先是使用
Bitmap bmp = BitmapFactory.decodeFile(pePicFile.getAbsolutePath() +"/"+info.getImage());
上面參數(shù)是我將要讀取的圖片文件及路徑,當文件較小時派近,程序能夠正常運行,但是當我選擇一張大圖時侯嘀,程序立刻蹦出了java.lang.OutOfMemoryError: bitmap size exceeds VM budget的OOM錯誤!
在android設(shè)備上(where you have only 16MB memory available)吠谢,如果使用BitmapFactory解碼一個較大文件诗茎,很大的情況下會出現(xiàn)上述情況。那么错沃,怎么解決枢析?!
先說之前提到過的一種方法:即將載入的圖片縮小司浪,這種方式以犧牲圖片的質(zhì)量為代價把沼。在BitmapFactory中有一個內(nèi)部類BitmapFactory.Options,其中當options.inSampleSize值>1時租谈,根據(jù)文檔:
If set to a value > 1, requests the decoder to subsample the original image, returning a smaller image to save memory. (1 -> decodes full size; 2 -> decodes 1/4th size; 4 -> decode 1/16th size). Because you rarely need to show and have full size bitmap images on your phone. For manipulations smaller sizes are usually enough.
也就是說捆愁,options.inSampleSize是以2的指數(shù)的倒數(shù)被進行放縮。這樣昼丑,我們可以依靠inSampleSize的值的設(shè)定將圖片放縮載入菩帝,這樣一般情況也就不會出現(xiàn)上述的OOM問題了。現(xiàn)在問題是怎么確定inSampleSize的值呼奢?每張圖片的放縮大小的比例應(yīng)該是不一樣的!這樣的話就要運行時動態(tài)確定州袒。在BitmapFactory.Options中提供了另一個成員inJustDecodeBounds弓候。
3BitmapFactory.Options opts =newBitmapFactory.Options();
opts.inJustDecodeBounds =true;
Bitmap bitmap = BitmapFactory.decodeFile(imageFile, opts);
設(shè)置inJustDecodeBounds為true后,decodeFile并不分配空間夸研,但可計算出原始圖片的長度和寬度依鸥,即opts.width和opts.height。有了這兩個參數(shù)贱迟,再通過一定的算法,即可得到一個恰當?shù)膇nSampleSize茶敏。Android提供了一種動態(tài)計算的方法缚俏。如下:
publicstaticintcomputeSampleSize(BitmapFactory.Options options,
intminSideLength,intmaxNumOfPixels) {
intinitialSize = computeInitialSampleSize(options, minSideLength,
maxNumOfPixels);
introundedSize;
if(initialSize <=8) {
roundedSize =1;
while(roundedSize < initialSize) {
roundedSize <<=1;
}
}else{
roundedSize = (initialSize +7) /8*8;
}
returnroundedSize;
}
privatestaticintcomputeInitialSampleSize(BitmapFactory.Options options,
intminSideLength,intmaxNumOfPixels) {
doublew = options.outWidth;
doubleh = options.outHeight;
intlowerBound = (maxNumOfPixels == -1) ?1:
(int) Math.ceil(Math.sqrt(w * h / maxNumOfPixels));
intupperBound = (minSideLength == -1) ?128:
(int) Math.min(Math.floor(w / minSideLength),
Math.floor(h / minSideLength));
if(upperBound < lowerBound) {
returnlowerBound;
}
if((maxNumOfPixels == -1) &&
(minSideLength == -1)) {
return1;
}elseif(minSideLength == -1) {
returnlowerBound;
}else{
returnupperBound;
}
}
以上參考一下忧换,我們只需要使用此函數(shù)就行了:
BitmapFactory.Options opts =newBitmapFactory.Options();
opts.inJustDecodeBounds =true;
BitmapFactory.decodeFile(imageFile, opts);
opts.inSampleSize = computeSampleSize(opts, -1,128*128);
//這里一定要將其設(shè)置回false,因為之前我們將其設(shè)置成了true
opts.inJustDecodeBounds =false;
try{
Bitmap bmp = BitmapFactory.decodeFile(imageFile, opts);
imageView.setImageBitmap(bmp);
}catch(OutOfMemoryError err) {
}
這樣酪耳,在BitmapFactory.decodeFile執(zhí)行處刹缝,也就不會報出上面的OOM Error了。完美解決赞草?如前面提到的,這種方式在一定程度上是以犧牲圖片質(zhì)量為代價的洲守。如何才能更加優(yōu)化的實現(xiàn)需求沾凄?
當在android設(shè)備中載入較大圖片資源時,可以創(chuàng)建一些臨時空間叙谨,將載入的資源載入到臨時空間中保屯。
2BitmapFactory.Options bfOptions=newBitmapFactory.Options();
bfOptions.inTempStorage=newbyte[12*1024];
以上創(chuàng)建了一個12kb的臨時空間涤垫。然后使用Bitmap bitmapImage = BitmapFactory.decodeFile(path,bfOptions);但是我在程序中卻還是出現(xiàn)以上問題竟终!以下使用BitmapFactory.decodeFileDescriptor解決了以上問題:
BitmapFactory.Options bfOptions=newBitmapFactory.Options();
bfOptions.inDither=false;
bfOptions.inPurgeable=true;
bfOptions.inTempStorage=newbyte[12*1024];
// bfOptions.inJustDecodeBounds = true;
File file =newFile(pePicFile.getAbsolutePath() +"/"+info.getImage());
FileInputStream fs=null;
try{
fs =newFileInputStream(file);
}catch(FileNotFoundException e) {
e.printStackTrace();
}
Bitmap bmp =null;
if(fs !=null)
try{
bmp = BitmapFactory.decodeFileDescriptor(fs.getFD(),null, bfOptions);
}catch(IOException e) {
e.printStackTrace();
}finally{
if(fs!=null) {
try{
fs.close();
}catch(IOException e) {
e.printStackTrace();
}
}
}
當然要將取得圖片進行放縮顯示等處理也可以在以上得到的bmp進行。
PS:請圖片處理后進行內(nèi)存回收榆芦。bmp.recycle();這樣將圖片占有的內(nèi)存資源釋放喘鸟。