Android examples for Graphics:Drawable
get Drawable To Bitmap
//package com.java2s; import android.content.Context; import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; public class Main { public static Bitmap getDrawableToBitmap(int res_id, Context context) { BitmapDrawable drawable = (BitmapDrawable) context.getResources() .getDrawable(res_id);/*from w ww . jav a 2 s . com*/ Bitmap bitmap = drawable.getBitmap(); return bitmap; } }