画像クラスの変換例
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 件のコメント:
コメントを投稿