2013年8月10日土曜日

Drawable とBitmapの互換変換

画像クラスの変換例


Resource to Bitmap

BitmapFactory.decodeResource(getResources(), R.drawable.icon)


Drawable to Bitmap

((BitmapDrawable) drawable).getBitmap()


Resource to Drawable

getResources().getDrawable(R.drawable.icon)


Bitmap to Drawable

new BitmapDrawable(bitmap)

他にもINT配列をBitmapにできる。

0 件のコメント:

コメントを投稿