很多开发者表示,不知道Android的Drawable和Bitmap之间如何相关转换。下面Android123给大家两种比较简单高效的方法。
一、Bitmap转Drawable
BitmapDrawable bd=BitmapDrawable(bm);
二、 Drawable转Bitmap
转成Bitmap对象后,可以将Drawable对象通过Android的SK库存成一个字节输出流,最终还可以保存成为jpg和png的文件。
BitmapDrawable bd = (BitmapDrawable) d;
Bitmap bm = bd.getBitmap();