android擷取Bitmap的兩種方式

來源:互聯網
上載者:User

第一種方法 Java代碼

  1. //得到Resources對象  
  2. Resources r = this.getContext().getResources();  
  3. //以資料流的方式讀取資源  
  4. Inputstream is = r.openRawResource(R.drawable.my_background_image);  
  5. BitmapDrawable  bmpDraw = new BitmapDrawable(is);  
  6. Bitmap bmp = bmpDraw.getBitmap(); 
//得到Resources對象Resources r = this.getContext().getResources();//以資料流的方式讀取資源Inputstream is = r.openRawResource(R.drawable.my_background_image);BitmapDrawable  bmpDraw = new BitmapDrawable(is);Bitmap bmp = bmpDraw.getBitmap();

  第二種方法這種方法是通過BitmapFactory這個工具類,BitmapFactory的所有函數都是static,這個輔助類可以通過資源ID、路徑、檔案、資料流等方式來擷取位元影像。大家可以開啟API 看一下裡邊全是靜態方法。這個類裡邊有一個叫做 decodeStream(InputStream is)  

此方法可以 解碼一個新的位元影像從一個InputStream。這是獲得資源的InputStream。
代碼: Java代碼

  1. InputStream is = getResources().openRawResource(R.drawable.icon);    
  2.          Bitmap mBitmap = BitmapFactory.decodeStream(is);    
  3.          Paint mPaint = new Paint();    
  4.          canvas.drawBitmap(mBitmap, 40,
    40, mPaint);   
InputStream is = getResources().openRawResource(R.drawable.icon);           Bitmap mBitmap = BitmapFactory.decodeStream(is);           Paint mPaint = new Paint();           canvas.drawBitmap(mBitmap, 40, 40, mPaint);  

   顯然第二種方法簡單很多了。 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.