Hi I am using ACTION_IMAGE_CAPTURE for capturing image using intent as follwo..

Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(
MediaStore.EXTRA_OUTPUT, (new File(Environment.getExternalStorageDirectory(),
String.valueOf(System.currentTimeMillis()) + ".jpg"))
);
startActivityForResult(cameraIntent, 0);

i need to store image in sdcard and retrieve path of that image in onActivityResult() method i don't know how to get image path of currently captured image. if any one knows please help.

Thanks

link|improve this question

79% accept rate
2  
please put all of your code within the "code" textboxes, it makes reading your code much easier, so than we may be able to answer your questions – Samuel Nov 15 '10 at 14:19
feedback

4 Answers

up vote 13 down vote accepted

This is how it works on 2.2 (different than on previous versions). When starting intent

        String fileName = "temp.jpg";  
        ContentValues values = new ContentValues();  
        values.put(MediaStore.Images.Media.TITLE, fileName);  
        mCapturedImageURI = getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);  

        Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);  
        intent.putExtra(MediaStore.EXTRA_OUTPUT, mCapturedImageURI);  
        startActivityForResult(intent, CAPTURE_PICTURE_INTENT);

you need to remember mCapturedImageURI.

When you capture image, in onActivityResult() use that URI to obtain file path:

            String[] projection = { MediaStore.Images.Media.DATA}; 
            Cursor cursor = managedQuery(mCapturedImageURI, projection, null, null, null); 
            int column_index_data = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA); 
            cursor.moveToFirst(); 
            String capturedImageFilePath = cursor.getString(column_index_data);
link|improve this answer
thanks Desiderio... i will try with that.. – iCoder86 Nov 23 '10 at 10:28
Good luck. This approach works for me. – Zelimir Nov 23 '10 at 11:32
You are genius man!!! thanks alot. was looking for this since long.. Appreciate it.. – Harshad Apr 27 '11 at 11:30
Thanks a lot. Glad that it was helpful Best regards. – Zelimir Apr 27 '11 at 12:11
Thank you for this, but does not work on Samsung Galaxy I or II. Returns thumbnail on HTC Incredible :-( – Oh Danny Boy Oct 3 '11 at 17:55
show 2 more comments
feedback
  • Isn't the URI you set in the beginning the file path?
  • What about older versions, 1.5-2.1 ?
link|improve this answer
feedback

Another way, tested on android 2.1, is take the ID or AbsolutePath of the gallery last image.

It can be done like that:

/**
 * Gets the last image id from the media store
 * @return
 */
private int getLastImageId(){
    final String[] imageColumns = { MediaStore.Images.Media._ID, MediaStore.Images.Media.DATA };
    final String imageOrderBy = MediaStore.Images.Media._ID+" DESC";
    Cursor imageCursor = managedQuery(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, imageColumns, null, null, imageOrderBy);
    if(imageCursor.moveToFirst()){
        int id = imageCursor.getInt(imageCursor.getColumnIndex(MediaStore.Images.Media._ID));
        String fullPath = imageCursor.getString(imageCursor.getColumnIndex(MediaStore.Images.Media.DATA));
        Log.d(TAG, "getLastImageId::id " + id);
        Log.d(TAG, "getLastImageId::path " + fullPath);
        imageCursor.close();
        return id;
    }else{
        return 0;
    }
}

And to remove the file:

private void removeImage(int id) {
       ContentResolver cr = getContentResolver();
        cr.delete(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, MediaStore.Images.Media._ID + "=?", new String[]{ Long.toString(id) } );
}

This code was based on the post: Deleting a gallery image after camera intent photo taken

link|improve this answer
feedback

This question is very old but I have been battling with the same problem for half a day. The issue is that your ACTION_IMAGE_CAPTURE intent will always return code=-1 and data=null unless you set the following permissions for the application in your AndroidManifest.xml file:

<uses-permission android:name="android.permission.CAMERA"/>

You can also set the following if you want to record audio from your application:

<uses-permission android:name="android.permission.RECORD_AUDIO"/>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.