List of utility methods to do Bitmap Option Get
BitmapFactory.Options | getImageOptions(String filePath) get Image Options BitmapFactory.Options opts = new BitmapFactory.Options(); opts.inJustDecodeBounds = true; BitmapFactory.decodeFile(filePath, opts); return opts; |
Bitmap.Config | getConfig(Bitmap bitmap) get Config Bitmap.Config config = bitmap.getConfig(); if (config == null) { config = Bitmap.Config.ARGB_8888; return config; |