このインテントとギャラリー エディターに問題があります
//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());
Photoshop アプリでは問題ありません。保存と編集はできますが、Android ギャラリーでは別のディレクトリに保存できません。
ありがとう