Android獲得Bitmap的三種方法

原創:點擊打開鏈接

1.使用BitmapFactory解析圖片

// --> 使用BitmapFactory解析圖片
           public void myUseBitmapFactory(Canvas canvas){
           // 定義畫筆
              Paint paint = new Paint();
           // 獲取資源流
              Resources rec = getResources();
              InputStream in = rec.openRawResource(R.drawable.haha);
           // 設置圖片
              Bitmap bitmap =BitmapFactory.decodeStream(in);
           // 繪製圖片
              canvas.drawBitmap(bitmap, 0,20, paint);         
           }

2.用BitmapDrawable解析圖片

// --> 使用BitmapDrawable解析圖片
           public void myUseBitmapDrawable(Canvas canvas){
           // 定義畫筆
              Paint paint = new Paint();
           // 獲得資源
              Resources rec = getResources();
           // BitmapDrawable
              BitmapDrawable bitmapDrawable = (BitmapDrawable) rec.getDrawable(R.drawable.haha);
           // 得到Bitmap
              Bitmap bitmap = bitmapDrawable.getBitmap();
           // 在畫板上繪製圖片
              canvas.drawBitmap(bitmap, 20,120,paint);
           }

3.InputStreamBitmapDrawable繪製

  // --> 使用InputStream和BitmapDrawable解析圖片
           public void myUseInputStreamandBitmapDrawable(Canvas canvas){
           // 定義畫筆
              Paint paint = new Paint();
           // 獲得資源
              Resources rec = getResources();
           // InputStream得到資源流
              InputStream in = rec.openRawResource(R.drawable.haha);
           // BitmapDrawable 解析數據流
              BitmapDrawable bitmapDrawable =  new BitmapDrawable(in);
           // 得到圖片
              Bitmap bitmap = bitmapDrawable.getBitmap();
           // 繪製圖片
              canvas.drawBitmap(bitmap, 100, 100,paint);
           }


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章