目前, 我所知的如下 :
方式 1: 建立空的 Bitmap
Bitmap vBitmap = Bitmap.createBitmap( vWidth
, vHeight
, <Bitmap.Config>
);
方式 2: 取得 Resource 的 Bitmap
Bitmap vBitmap = BitmapFactory.decodeResource( vContext.getResources()
, R.drawable.<drawable_name>
);
方式 3: 取得圖檔的 Bitmap
Bitmap vBitmap = BitmapFactory.decodeStream( vContentResolver.openInputStream(uri) );