android BitmapFactory的OutOfMemoryError

網(wǎng)上有很多解決android加載bitmap內(nèi)存溢出的方法撒犀,搜了一圈做下整理總結(jié)偎箫。項目里需求是拍攝多圖之后上傳蔑舞,部分手機會內(nèi)存溢出。

常用一種解決方法:即將載入的圖片縮小殷费,這種方式以犧牲圖片的質(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ù)被進行放縮

現(xiàn)在問題是怎么確定inSampleSize的值仍律?每張圖片的放縮大小的比例應該是不一樣的嘿悬!這樣的話就要運行時動態(tài)確定。在BitmapFactory.Options中提供了另一個成員inJustDecodeBounds水泉。

設(shè)置inJustDecodeBounds為true后善涨,decodeFile并不分配空間,但可計算出原始圖片的長度和寬度茶行,即opts.width和opts.height躯概。有了這兩個參數(shù),再通過一定的算法畔师,即可得到一個恰當?shù)膇nSampleSize娶靡。Android提供了一種動態(tài)計算的方法,見computeSampleSize().

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ù)即可姿锭,opts.inSampleSize = computeSampleSize(opts, -1,128*128);

要點:

1、用decodeFileDescriptor()來生成bimap比decodeFile()省內(nèi)存

FileInputStreamis= =newFileInputStream(path);bmp = BitmapFactory.decodeFileDescriptor(is.getFD(),null, opts);

替換

Bitmap bmp = BitmapFactory.decodeFile(imageFile, opts);? ? imageView.setImageBitmap(bmp);

原因:

查看BitmapFactory的源碼伯铣,對比一下兩者的實現(xiàn)呻此,可以發(fā)現(xiàn)decodeFile()最終是以流的方式生成bitmap

decodeFile源碼:

publicstaticBitmapdecodeFile(String pathName, Options opts){? ? ? ? Bitmap bm =null;? ? ? ? InputStream stream =null;try{? ? ? ? ? ? stream =newFileInputStream(pathName);? ? ? ? ? ? bm = decodeStream(stream,null, opts);? ? ? ? }catch(Exception e) {/*? do nothing.

If the exception happened on open, bm will be null.

*/}finally{if(stream !=null) {try{? ? ? ? ? ? ? ? ? ? stream.close();? ? ? ? ? ? ? ? }catch(IOException e) {// do nothing here}? ? ? ? ? ? }? ? ? ? }returnbm;? ? }

decodeFileDescriptor的源碼,可以找到native本地方法decodeFileDescriptor腔寡,通過底層生成bitmap

decodeFileDescriptor源碼:

publicstaticBitmapdecodeFileDescriptor(FileDescriptor fd, Rect outPadding, Options opts){if(nativeIsSeekable(fd)) {? ? ? ? ? ? Bitmap bm = nativeDecodeFileDescriptor(fd, outPadding, opts);if(bm ==null&& opts !=null&& opts.inBitmap !=null) {thrownewIllegalArgumentException("Problem decoding into existing bitmap");? ? ? ? ? ? }returnfinishDecode(bm, outPadding, opts);? ? ? ? }else{? ? ? ? ? ? FileInputStream fis =newFileInputStream(fd);try{returndecodeStream(fis, outPadding, opts);? ? ? ? ? ? }finally{try{? ? ? ? ? ? ? ? ? ? fis.close();? ? ? ? ? ? ? ? }catch(Throwable t) {/* ignore */}? ? ? ? ? ? }? ? ? ? }? ? }privatestaticnativeBitmapnativeDecodeFileDescriptor(FileDescriptor fd,Rect padding, Options opts);

2焚鲜、當在android設(shè)備中載入較大圖片資源時,可以創(chuàng)建一些臨時空間放前,將載入的資源載入到臨時空間中忿磅。

opts.inTempStorage =newbyte[16*1024];

?

完整代碼:

publicstaticOutputStream decodeBitmap(Stringpath) {BitmapFactory.Options opts =newBitmapFactory.Options();opts.inJustDecodeBounds =true;// 設(shè)置成了true,不占用內(nèi)存,只獲取bitmap寬高BitmapFactory.decodeFile(path, opts);opts.inSampleSize = computeSampleSize(opts, -1,1024*800);opts.inJustDecodeBounds =false;// 這里一定要將其設(shè)置回false凭语,因為之前我們將其設(shè)置成了trueopts.inPurgeable =true;opts.inInputShareable =true;opts.inDither =false;opts.inPurgeable =true;opts.inTempStorage =newbyte[16*1024];FileInputStream is =null;Bitmap bmp =null;InputStream ins =null;ByteArrayOutputStream baos =null;try{is =newFileInputStream(path);bmp = BitmapFactory.decodeFileDescriptor(is.getFD(),null, opts);doublescale= getScaling(opts.outWidth * opts.outHeight,1024*600);Bitmap bmp2 = Bitmap.createScaledBitmap(bmp,(int) (opts.outWidth *scale),(int) (opts.outHeight *scale),true);bmp.recycle();baos =newByteArrayOutputStream();bmp2.compress(Bitmap.CompressFormat.JPEG,100, baos);bmp2.recycle();returnbaos;}catch(FileNotFoundException e) {e.printStackTrace();}catch(IOException e) {e.printStackTrace();}finally{try{is.close();ins.close();baos.close();}catch(IOException e) {e.printStackTrace();}System.gc();}returnbaos;}privatestaticdoublegetScaling(intsrc,intdes) {/**

* 目標尺寸÷原尺寸 sqrt開方葱她,得出寬高百分比

*/doublescale= Math.sqrt((double) des / (double) src);returnscale;}




http://my.oschina.net/jeffzhao/blog/80900

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市似扔,隨后出現(xiàn)的幾起案子吨些,更是在濱河造成了極大的恐慌,老刑警劉巖炒辉,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件豪墅,死亡現(xiàn)場離奇詭異,居然都是意外死亡黔寇,警方通過查閱死者的電腦和手機但校,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來啡氢,“玉大人状囱,你說我怎么就攤上這事术裸。” “怎么了亭枷?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵袭艺,是天一觀的道長。 經(jīng)常有香客問我叨粘,道長猾编,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任升敲,我火速辦了婚禮答倡,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘驴党。我一直安慰自己瘪撇,他們只是感情好,可當我...
    茶點故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布港庄。 她就那樣靜靜地躺著倔既,像睡著了一般。 火紅的嫁衣襯著肌膚如雪鹏氧。 梳的紋絲不亂的頭發(fā)上渤涌,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機與錄音把还,去河邊找鬼实蓬。 笑死,一個胖子當著我的面吹牛吊履,可吹牛的內(nèi)容都是我干的瞳秽。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼率翅,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了袖迎?” 一聲冷哼從身側(cè)響起冕臭,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎燕锥,沒想到半個月后辜贵,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡归形,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年托慨,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片暇榴。...
    茶點故事閱讀 38,566評論 1 339
  • 序言:一個原本活蹦亂跳的男人離奇死亡厚棵,死狀恐怖蕉世,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情婆硬,我是刑警寧澤狠轻,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布,位于F島的核電站彬犯,受9級特大地震影響向楼,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜谐区,卻給世界環(huán)境...
    茶點故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一湖蜕、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧宋列,春花似錦昭抒、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至嘹叫,卻和暖如春婆殿,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背罩扇。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工婆芦, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人喂饥。 一個月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓消约,卻偏偏與公主長得像,于是被迫代替她去往敵國和親员帮。 傳聞我的和親對象是個殘疾皇子或粮,可洞房花燭夜當晚...
    茶點故事閱讀 43,440評論 2 348

推薦閱讀更多精彩內(nèi)容