Here you can find the source of getImageOptions(String filePath)
public static BitmapFactory.Options getImageOptions(String filePath) throws Exception
//package com.java2s; import android.graphics.BitmapFactory; public class Main { public static BitmapFactory.Options getImageOptions(String filePath) throws Exception { BitmapFactory.Options opts = new BitmapFactory.Options(); opts.inJustDecodeBounds = true;/*ww w.j a va 2 s.co m*/ BitmapFactory.decodeFile(filePath, opts); return opts; } }