您好,登錄后才能下訂單哦!
在Android經常使用到Bitmap用于顯示圖片,如果圖片過大,容易出現"OutOfMemory"異常,所以要對圖片進行壓縮顯示。
通常使用BitmapFactory類的幾個方法(decodeByteArray(), decodeFile(), decodeResource()等)來建立一個bitmap,在生成bitmap前,可以通過BitmapFactory.Options來設置屬性,來保證不會出現OutOfMemory異常。首先可以通過需要顯示圖片的長寬來獲取縮小的倍數:
private int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) { // Raw height and width of p_w_picpath final int height = options.outHeight; final int width = options.outWidth; int inSampleSize = 1; if (height > reqHeight || width > reqWidth) { if (width > height) { inSampleSize = Math.round((float) height / (float) reqHeight); } else { inSampleSize = Math.round((float) width / (float) reqWidth); } } return inSampleSize; }
PS:官方文檔說到,圖片壓縮時,使用2的倍數壓縮效率會高,就是2,4,8…這種,我這里使用的是更接近需要的壓縮倍數,官方文檔看這里。
使用兩種方式來壓縮圖片,一種是根據需要的圖片長寬,一種是根據需要的圖片大小(就是多少K)。
先看第一種:
public Bitmap GetThumbImageByWH(boolean isRound,String imgPath, int p_w_picpathwidth, int p_w_picpathheight) { try { File picture = new File(imgPath); BitmapFactory.Options bitmapFactoryOptions = new BitmapFactory.Options(); // set height and width of p_w_picpath bitmapFactoryOptions.inJustDecodeBounds = true; Bitmap bmap = BitmapFactory.decodeFile(picture.getAbsolutePath(), bitmapFactoryOptions); int inSampleSize = calculateInSampleSize(bitmapFactoryOptions,p_w_picpathwidth,p_w_picpathheight); bitmapFactoryOptions.inSampleSize = inSampleSize; bitmapFactoryOptions.inJustDecodeBounds = false; bmap = BitmapFactory.decodeFile(picture.getAbsolutePath(), bitmapFactoryOptions); return bmap; } catch (Exception e) { e.printStackTrace(); return null; } }
PS:如果使用一個BitmapFactory.Options對象,要先把該對象的inJustDecodeBounds屬性設置為true,inSampleSize設置完成后再設置為false。后面的是用來翻轉圖片的。
第二種方式:
public Bitmap getThumbImageBySize(String imgpath, int size, boolean adjustOrientation) { File file=new File(imgpath); FileInputStream fis = null; int filesize=0; try{ fis = new FileInputStream(file); filesize = fis.available(); Log.v("file length", ""+filesize); fis.close(); }catch(Exception ex){ Log.v("Read file error", ""+ex.getMessage()); } if(filesize/1024<size){ return BitmapFactory.decodeFile(imgpath); } // Revision: BitmapFactory.Options options = new BitmapFactory.Options(); // Set it false to not build the bitmap,just record its width and height options.inJustDecodeBounds = true; // Get the Options object by the path BitmapFactory.decodeFile(imgpath, options); int height = options.outHeight; int width = options.outWidth; Bitmap smallBitmap = null; double multiple = (float)(width*height*4)/(float)(size*1024); int inSampleSize = (int)Math.ceil(Math.sqrt(((float)filesize/1024.0)/(float)size)); options.inSampleSize=inSampleSize; options.inJustDecodeBounds = false; smallBitmap = BitmapFactory.decodeFile(imgpath, options); return smallBitmap; } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。