Absolute Path
Environment.getExternalStorageDirectory().getAbsolutePath() gives to absolute path to SDCard.
From here "/DCIM/Camera/" would give you the path to folder used by Camera to store captured image.
So your file path would be something like this
String mBaseFolderPath = Environment.getExternalStorageDirectory().getAbsolutePath() + "/DCIM/Camera/";
String filePath = mBaseFolderPath + "test.jpg";
Bitmap bitmap = BitmapFactory.decodeFile(filePath);
Content Resolver Path
content://media/external/images/media/1 is the path referred by content resolver. This is like
MediaStore.Images.Media.EXTERNAL_CONTENT_URI + Image Id
If you get hold of Uri of the image then you can use the following to get bitmap correspondong to the image.
Bitmap someBitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), url);
Shash