برای تبدیل یک آبجکت Drawable در اندروید به Bitmap، میتوان از متد زیر استفاده کرد:
1 2 3 4 5 |
public static Bitmap toBitmap(Drawable drawable) { BitmapDrawable bitmapDrawable = (BitmapDrawable) drawable; Bitmap bitmap = bitmapDrawable.getBitmap(); return bitmap; } |
این متد، با دریافت یک drawable، یک Bitmap برمیگرداند.
نظرات ثبت شده بدون دیدگاه