Here you can find the source of getBitmap(Context context, int resId)
public static Bitmap getBitmap(Context context, int resId)
//package com.java2s; import android.content.Context; import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; public class Main { public static Bitmap getBitmap(Context context, int resId) { BitmapDrawable drawable = (BitmapDrawable) context.getResources() .getDrawable(resId);/*w w w.j av a 2 s . c om*/ return drawable.getBitmap(); } }