Android 載入大圖片時報OOM的解決方案(原始碼)
在Android中:
1.一個程式的記憶體可以由2個部門組成:java 施用記憶體 ,C 施用記憶體 ,這兩個記憶體的和必需小於16M,不然就會出現各人熟悉的OOM,這個就是熬頭種OOM的情況。
2.一朝記憶體分配給Java後,以後這塊記憶體縱然開釋後,也只能給Java的施用,這個估計跟java虛擬機器裡把記憶體分成好幾塊進行快取的原因有關,反正C就別想用到這塊的記憶體了,所以要是Java突然佔用了一個大塊記憶體,縱然很快開釋了:
C能施用的記憶體 = 16M - Java某一瞬間佔在校大學生創業點子用的最大記憶體。
而Bitmap的生成是路程經過過程malloc進行記憶體分配的,佔用的是C的記憶體。
Code :
/**
* 載入大圖片工具類:解決android載入大圖片時報OOM異常
* 解決原理:先設定縮放選項,再讀取縮放的圖片資料到記憶體,規避了記憶體引起的OOM
* @author: 張進
* @time:2011/7/28
*/
public class BitmapUtil {
public static final int UNCONSTRAINED = -1;
/*
* 獲得設定資訊
*/
public static Options getOptions(String path){
Options options = new Options();
options.inJustDecodeBounds = true;//只描邊,不讀取資料
BitmapFactory.decodeFile(path, options);
return options;
}
/**
* 獲得影象
* @param path
* @param options
* @return
* @throws FileNotFoundException
*/
public static Bitmap getBitmapByPath(String path, Options options , int screenWidth , int screenHeight)throws FileNotFoundException{
File file = new File(path);
if(!file.exists()){
throw new FileNotFoundException();
}
FileInputStream in = null;
in = new FileInputStream(file);
if(options != null){
Rect r = getScreenRegion(screenWidth,screenHeight);
int w = r.width();
int h = r.height();
int maxSize = w > h ? w : h;
int inSimpleSize = computeSampleSize(options, maxSize, w * h);
options.inSampleSize = inSimpleSize; //設定縮放比例
options.inJustDecodeBounds = false;
}
Bitmap b = BitmapFactory.decodeStream(in, null, options);
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
return b;
}
private static Rect getScreenRegion(int width , int height) {
return new Rect(0,0,width,height);
}
/**
* 獲取需要進行縮放的比例,即options.inSampleSize
* @param options
* @param minSideLength
* @param maxNumOfPixels
* @return
*/
public static int computeSampleSize(BitmapFactory.Options options,
int minSideLength, int maxNumOfPixels) {
int initialSize = computeInitialSampleSize(options, minSideLength,
maxNumOfPixels);
int roundedSize;
if (initialSize <= 8) {
roundedSize = 1;
while (roundedSize < initialSize) {
roundedSize <<= 1;
}
} else {
roundedSize = (initialSize + 7) / 8 * 8;
}
return roundedSize;
}
private static int computeInitialSampleSize(BitmapFactory.Options options,
int minSideLength, int maxNumOfPixels) {
double w = options.outWidth;
double h = options.outHeight;
int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
(int) Math.ceil(Math.sqrt(w * h / maxNumOfPixels));
int upperBound = (minSideLength == UNCONSTRAINED) ? 128 :
(int) Math.min(Math.floor(w / minSideLength),
Math.floor(h / minSideLength));
if (upperBound < lowerBound) {
// return the larger one when there is no overlapping zone.
return lowerBound;
}
if ((maxNumOfPixels == UNCONSTRAINED) &&
(minSideLength == UNCONSTRAINED)) {
return 1;
} else if (minSideLength == UNCONSTRAINED) {
return lowerBound;
} else {
return upperBound;
}
}
}
工具類的使用:
String path = "/sdcard/test2.jpg";
try {
Bitmap bitmap = BitmapUtil.getBitmapByPath(path, BitmapUtil.getOptions(path), screenWidth, screenHeight);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
1.一個程式的記憶體可以由2個部門組成:java 施用記憶體 ,C 施用記憶體 ,這兩個記憶體的和必需小於16M,不然就會出現各人熟悉的OOM,這個就是熬頭種OOM的情況。
2.一朝記憶體分配給Java後,以後這塊記憶體縱然開釋後,也只能給Java的施用,這個估計跟java虛擬機器裡把記憶體分成好幾塊進行快取的原因有關,反正C就別想用到這塊的記憶體了,所以要是Java突然佔用了一個大塊記憶體,縱然很快開釋了:
C能施用的記憶體 = 16M - Java某一瞬間佔在校大學生創業點子用的最大記憶體。
而Bitmap的生成是路程經過過程malloc進行記憶體分配的,佔用的是C的記憶體。
Code :
/**
* 載入大圖片工具類:解決android載入大圖片時報OOM異常
* 解決原理:先設定縮放選項,再讀取縮放的圖片資料到記憶體,規避了記憶體引起的OOM
* @author: 張進
* @time:2011/7/28
*/
public class BitmapUtil {
public static final int UNCONSTRAINED = -1;
/*
* 獲得設定資訊
*/
public static Options getOptions(String path){
Options options = new Options();
options.inJustDecodeBounds = true;//只描邊,不讀取資料
BitmapFactory.decodeFile(path, options);
return options;
}
/**
* 獲得影象
* @param path
* @param options
* @return
* @throws FileNotFoundException
*/
public static Bitmap getBitmapByPath(String path, Options options , int screenWidth , int screenHeight)throws FileNotFoundException{
File file = new File(path);
if(!file.exists()){
throw new FileNotFoundException();
}
FileInputStream in = null;
in = new FileInputStream(file);
if(options != null){
Rect r = getScreenRegion(screenWidth,screenHeight);
int w = r.width();
int h = r.height();
int maxSize = w > h ? w : h;
int inSimpleSize = computeSampleSize(options, maxSize, w * h);
options.inSampleSize = inSimpleSize; //設定縮放比例
options.inJustDecodeBounds = false;
}
Bitmap b = BitmapFactory.decodeStream(in, null, options);
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
return b;
}
private static Rect getScreenRegion(int width , int height) {
return new Rect(0,0,width,height);
}
/**
* 獲取需要進行縮放的比例,即options.inSampleSize
* @param options
* @param minSideLength
* @param maxNumOfPixels
* @return
*/
public static int computeSampleSize(BitmapFactory.Options options,
int minSideLength, int maxNumOfPixels) {
int initialSize = computeInitialSampleSize(options, minSideLength,
maxNumOfPixels);
int roundedSize;
if (initialSize <= 8) {
roundedSize = 1;
while (roundedSize < initialSize) {
roundedSize <<= 1;
}
} else {
roundedSize = (initialSize + 7) / 8 * 8;
}
return roundedSize;
}
private static int computeInitialSampleSize(BitmapFactory.Options options,
int minSideLength, int maxNumOfPixels) {
double w = options.outWidth;
double h = options.outHeight;
int lowerBound = (maxNumOfPixels == UNCONSTRAINED) ? 1 :
(int) Math.ceil(Math.sqrt(w * h / maxNumOfPixels));
int upperBound = (minSideLength == UNCONSTRAINED) ? 128 :
(int) Math.min(Math.floor(w / minSideLength),
Math.floor(h / minSideLength));
if (upperBound < lowerBound) {
// return the larger one when there is no overlapping zone.
return lowerBound;
}
if ((maxNumOfPixels == UNCONSTRAINED) &&
(minSideLength == UNCONSTRAINED)) {
return 1;
} else if (minSideLength == UNCONSTRAINED) {
return lowerBound;
} else {
return upperBound;
}
}
}
工具類的使用:
String path = "/sdcard/test2.jpg";
try {
Bitmap bitmap = BitmapUtil.getBitmapByPath(path, BitmapUtil.getOptions(path), screenWidth, screenHeight);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
相關文章
- Android之批量載入圖片OOM問題解決方案AndroidOOM
- Android高效載入大圖、多圖解決方案,有效避免程式OOMAndroid圖解OOM
- Android OOM 排查與解決——圖片載入優化AndroidOOM優化
- android 載入圖片輕鬆避免OOM(out of memory)AndroidOOM
- Android圖片載入庫Picasso原始碼分析Android原始碼
- Android 載入大圖片,不壓縮圖片Android
- 圖片載入失敗解決方案 以及canvas即時生成提示圖片Canvas
- Android 圖片高斯模糊解決方案Android
- Android Volley 原始碼解析(三),圖片載入的實現Android原始碼
- Android有效解決載入大圖片時記憶體溢位的問題Android記憶體溢位
- 圖片載入框架Picasso - 原始碼分析框架原始碼
- 圖片載入框架Picasso原始碼分析框架原始碼
- 影片直播原始碼,載入gif圖片原始碼
- Android 圖片載入框架 Picasso 基本使用和原始碼完全解析Android框架原始碼
- Android 高清載入巨圖方案 拒絕壓縮圖片Android
- Android圖片載入的框架Fresco使用詳解Android框架
- 前端圖片解決方案前端
- Android圖片載入框架Picasso原始碼分析(基於Picasso 2.71828)Android框架原始碼
- Android圖片記憶體溢位的解決方案Android記憶體溢位
- 小說APP原始碼的圖片載入方式,懶載入和預載入的實現APP原始碼
- Android 圖片載入框架Android框架
- android 載入大量圖片Android
- IE瀏覽器下圖片載入onload事件失效解決方案瀏覽器事件
- Android圖片載入框架Fresco使用詳解Android框架
- 要優雅!Android中這樣載入大圖片和長圖片Android
- 載入GIF圖片優化方案優化
- 《Android原始碼設計模式解析與實戰》——物件導向的六大原則的圖片載入器原始碼Android原始碼設計模式物件
- 如何讓Android 支援HEIF 圖片解碼和載入(免費的方法)Android
- 視訊直播app原始碼,Android RecyclerView 列表載入圖片寬高適配APP原始碼AndroidView
- 初識Facebook的強大Android圖片載入的框架:FrescoAndroid框架
- Android 高效安全載入圖片Android
- 基於webpack的前端工程化開發解決方案探索(二):程式碼分割與圖片載入Web前端
- Android處理圖片OOM的若干方法小結AndroidOOM
- Android微信分享圖片按質量壓縮的解決方案Android
- 解耦圖片載入庫解耦
- repo下載Android原始碼時報 python windowserror 5Android原始碼PythonWindowsError
- android glide圖片載入框架AndroidIDE框架
- android基礎知識:Google提供的高效載入大圖方案AndroidGo