Here you can find the source of convertToBitmap(final Drawable drawable)
public static Bitmap convertToBitmap(final Drawable drawable)
//package com.java2s; import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.graphics.drawable.Drawable; public class Main { public static Bitmap convertToBitmap(final Drawable drawable) { return ((BitmapDrawable) drawable).getBitmap(); }//ww w. j a va 2s . com }