I have trouble with this Intent and Gallery editor
//fileURI is a content://
Intent intent = new Intent(Intent.ACTION_EDIT);
intent.setDataAndType(fileUri, "image/jpeg");
intent.putExtra("return-data", true);
intent.putExtra(MediaStore.EXTRA_OUTPUT, fileUri);
intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
With Photoshop App it’s ok, I can save and edit but not whith Android Gallery it save in another directory
thanks
Ok I have found :
The Gallery Source give information about noExtra is taken, only the Uri of the original file, so the only solution is to take the last File in Media Provider like that :