現在、内蔵カメラを使ったアプリを開発中です。ボタンをクリックしてこのスニペットを呼び出します:
Intent intent = new Intent("Android.media.action.IMAGE_CAPTURE");
//Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
path += "/myFolder/myPicture.jpg";
File file = new File( path );
//file.mkdirs();
Uri outputFileUri = Uri.fromFile( file );
//String absoluteOutputFileUri = file.getAbsolutePath();
intent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
startActivityForResult(intent, 0);
カメラで写真を撮った後、jpgはsdcard/myFolder/myPicture.jpgにwell storedですが、/ sdcard/DCIM/Camera/2011にはalso storedです。 -06-14 10.36.10.jpg、これはデフォルトのパスです。
内蔵カメラが写真をデフォルトのフォルダに保存しないようにする方法はありますか?
編集:Cameraクラスを直接使用すると思います
Android 2.1でテストされた別の方法は、ギャラリーの最後の画像のIDまたは絶対パスを取得することです。その後、複製された画像を削除できます。
それはそのように行うことができます:
/**
* 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;
}
}
そして、ファイルを削除するには:
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) } );
}
このコードは次の投稿に基づいています: カメラインテント写真を撮った後にギャラリー画像を削除しています
「Ilango J」からの回答は基本的な考えを提供しますが、実際にそれをどのように行ったかを実際に記述したいと思いました。 intent.putExtra()で設定していた一時ファイルパスは、さまざまなハードウェア間で非標準的な方法であるため、避けてください。 HTC Desire(Android 2.2)では機能しませんでした。また、他の電話でも機能すると聞きました。どこでも機能する中立的なアプローチをとることが最善です。
このインテントを使用したソリューションでは、電話のSDカードが利用可能であり、PCにマウントされていないことが必要です。 SDカードがPCに接続されている場合、通常のカメラアプリでも機能しません。
1)カメラキャプチャインテントを開始します。一時ファイルの書き込みを無効にしたことに注意してください(異なるハードウェア全体で非標準)
Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(camera , 0);
2)コールバックを処理し、キャプチャされた画像パスをUriオブジェクトから取得して、ステップ#3に渡します。
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) {
case CAPTURE_PIC: {
if (resultCode == RESULT_OK && data != null) {
Uri capturedImageUri = data.getData();
String capturedPicFilePath = getRealPathFromURI(capturedImageUri);
writeImageData(capturedImageUri, capturedPicFilePath);
break;
}
}
}
}
public String getRealPathFromURI(Uri contentUri) {
String[] projx = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(contentUri, projx, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
3)ファイルを複製して削除します。 UriのInputStreamを使用してコンテンツを読み取ったことを確認してください。同じことは、capturedPicFilePath
のファイルからも読み取ることができます。
public void writeImageData(Uri capturedPictureUri, String capturedPicFilePath) {
// Here's where the new file will be written
String newCapturedFileAbsolutePath = "something" + JPG;
// Here's how to get FileInputStream Directly.
try {
InputStream fileInputStream = getContentResolver().openInputStream(capturedPictureUri);
cloneFile(fileInputStream, newCapturedFileAbsolutePath);
} catch (FileNotFoundException e) {
// suppress and log that the image write has failed.
}
// Delete original file from Android's Gallery
File capturedFile = new File(capturedPicFilePath);
boolean isCapturedCameraGalleryFileDeleted = capturedFile.delete();
}
public static void cloneFile(InputStream currentFileInputStream, String newPath) {
FileOutputStream newFileStream = null;
try {
newFileStream = new FileOutputStream(newPath);
byte[] bytesArray = new byte[1024];
int length;
while ((length = currentFileInputStream.read(bytesArray)) > 0) {
newFileStream.write(bytesArray, 0, length);
}
newFileStream.flush();
} catch (Exception e) {
Log.e("Prog", "Exception while copying file " + currentFileInputStream + " to "
+ newPath, e);
} finally {
try {
if (currentFileInputStream != null) {
currentFileInputStream.close();
}
if (newFileStream != null) {
newFileStream.close();
}
} catch (IOException e) {
// Suppress file stream close
Log.e("Prog", "Exception occured while closing filestream ", e);
}
}
}
このコードを試してください:
Intent intent = new Intent("Android.media.action.IMAGE_CAPTURE");
//Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
String path = Environment.getExternalStorageDirectory().getAbsolutePath();
path += "/myFolder/myPicture.jpg";
File file = new File( path );
//file.mkdirs();
Uri outputFileUri = Uri.fromFile( file );
//String absoluteOutputFileUri = file.getAbsolutePath();
intent.putExtra("output", outputFileUri);
startActivityForResult(intent, 0);