Here you can find the source of getImage(String absPath)
public static Bitmap getImage(String absPath)
//package com.java2s; import android.graphics.Bitmap; import android.graphics.BitmapFactory; public class Main { public static Bitmap getImage(String absPath) { Bitmap bitmap = BitmapFactory.decodeFile(absPath); return bitmap; }//from w w w. ja v a 2 s.c o m }