valentincognito
7/26/2018 - 7:38 AM

Bitmap from Internal Storage

Create a bitmap from an internal storage path

File imgFile = new  File(image_path); //INTERNAL STORAGE path
if(imgFile.exists()){
  Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
}