Drawable to Bitmap
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(),DRAWABLE_IMAGE);
Make a Thumbnail // you may change 100 to any size you want
bitmap = ThumbnailUtils.extractThumbnail(bitmap, 100, 100);
Drawable to Bitmap
Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(),DRAWABLE_IMAGE);
Make a Thumbnail // you may change 100 to any size you want
bitmap = ThumbnailUtils.extractThumbnail(bitmap, 100, 100);
請先 登入 以發表留言。