Java tutorial
//package com.java2s; import android.graphics.Bitmap; import android.graphics.BitmapFactory; public class Main { /** * Read a bitmap from a file * @param filePath the full path of the bitmap * @return the decoded bitmap in full size */ public static Bitmap getBitmapFromFile(String filePath) { return BitmapFactory.decodeFile(filePath); } }