Here you can find the source of drawableToBitmap(Drawable drawable)
public static Bitmap drawableToBitmap(Drawable drawable)
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; public class Main { public static Bitmap drawableToBitmap(Drawable drawable) { BitmapDrawable bd = (BitmapDrawable) drawable; Bitmap bitmap = bd.getBitmap();//from ww w .jav a 2 s . com return bitmap; } }