android-画像をギャラリーに保存します


91

画像のギャラリーを備えたアプリがあり、ユーザーが自分のギャラリーに保存できるようにしたい。それを可能にするために単一の音声「保存」でオプションメニューを作成しましたが、問題は...ギャラリーに画像を保存するにはどうすればよいですか?

これは私のコードです:

@Override
        public boolean onOptionsItemSelected(MenuItem item) {
            // Handle item selection
            switch (item.getItemId()) {
            case R.id.menuFinale:

                imgView.setDrawingCacheEnabled(true);
                Bitmap bitmap = imgView.getDrawingCache();
                File root = Environment.getExternalStorageDirectory();
                File file = new File(root.getAbsolutePath()+"/DCIM/Camera/img.jpg");
                try 
                {
                    file.createNewFile();
                    FileOutputStream ostream = new FileOutputStream(file);
                    bitmap.compress(CompressFormat.JPEG, 100, ostream);
                    ostream.close();
                } 
                catch (Exception e) 
                {
                    e.printStackTrace();
                }



                return true;
            default:
                return super.onOptionsItemSelected(item);
            }
        }

私はコードのこの部分がわかりません:

File root = Environment.getExternalStorageDirectory();
                File file = new File(root.getAbsolutePath()+"/DCIM/Camera/img.jpg");

ギャラリーに保存することは正しいですか?残念ながら、コードは機能しません:(


この問題を解決しましたか?私と共有できますか
user3233280

私も同じ問題を抱えていstackoverflow.com/questions/21951558/...
user3233280

それでもファイルの保存に問題がある場合は、URLに「?」、「:」、「-」などの不正な文字が含まれていることが原因である可能性があります。これらを削除すると機能します。これは、外部デバイスとAndroidエミュレータでよくあるエラーです。詳細については、こちらをご覧ください:stackoverflow.com/questions/11394616/…–
ChallengeAccepted

:受け入れられた答えは、私がここで更新答え書かれている2019年に時代遅れ少ないstackoverflow.com/questions/36624756/...
バオ・レイ

回答:


168
MediaStore.Images.Media.insertImage(getContentResolver(), yourBitmap, yourTitle , yourDescription);

前のコードは、ギャラリーの最後に画像を追加します。先頭またはその他のメタデータに表示されるように日付を変更する場合は、以下のコードを参照してください(Cortesy of SK、samkirton):

https://gist.github.com/samkirton/0242ba81d7ca00b475b9

/**
 * Android internals have been modified to store images in the media folder with 
 * the correct date meta data
 * @author samuelkirton
 */
public class CapturePhotoUtils {

    /**
     * A copy of the Android internals  insertImage method, this method populates the 
     * meta data with DATE_ADDED and DATE_TAKEN. This fixes a common problem where media 
     * that is inserted manually gets saved at the end of the gallery (because date is not populated).
     * @see android.provider.MediaStore.Images.Media#insertImage(ContentResolver, Bitmap, String, String)
     */
    public static final String insertImage(ContentResolver cr, 
            Bitmap source, 
            String title, 
            String description) {

        ContentValues values = new ContentValues();
        values.put(Images.Media.TITLE, title);
        values.put(Images.Media.DISPLAY_NAME, title);
        values.put(Images.Media.DESCRIPTION, description);
        values.put(Images.Media.MIME_TYPE, "image/jpeg");
        // Add the date meta data to ensure the image is added at the front of the gallery
        values.put(Images.Media.DATE_ADDED, System.currentTimeMillis());
        values.put(Images.Media.DATE_TAKEN, System.currentTimeMillis());

        Uri url = null;
        String stringUrl = null;    /* value to be returned */

        try {
            url = cr.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);

            if (source != null) {
                OutputStream imageOut = cr.openOutputStream(url);
                try {
                    source.compress(Bitmap.CompressFormat.JPEG, 50, imageOut);
                } finally {
                    imageOut.close();
                }

                long id = ContentUris.parseId(url);
                // Wait until MINI_KIND thumbnail is generated.
                Bitmap miniThumb = Images.Thumbnails.getThumbnail(cr, id, Images.Thumbnails.MINI_KIND, null);
                // This is for backward compatibility.
                storeThumbnail(cr, miniThumb, id, 50F, 50F,Images.Thumbnails.MICRO_KIND);
            } else {
                cr.delete(url, null, null);
                url = null;
            }
        } catch (Exception e) {
            if (url != null) {
                cr.delete(url, null, null);
                url = null;
            }
        }

        if (url != null) {
            stringUrl = url.toString();
        }

        return stringUrl;
    }

    /**
     * A copy of the Android internals StoreThumbnail method, it used with the insertImage to
     * populate the android.provider.MediaStore.Images.Media#insertImage with all the correct
     * meta data. The StoreThumbnail method is private so it must be duplicated here.
     * @see android.provider.MediaStore.Images.Media (StoreThumbnail private method)
     */
    private static final Bitmap storeThumbnail(
            ContentResolver cr,
            Bitmap source,
            long id,
            float width, 
            float height,
            int kind) {

        // create the matrix to scale it
        Matrix matrix = new Matrix();

        float scaleX = width / source.getWidth();
        float scaleY = height / source.getHeight();

        matrix.setScale(scaleX, scaleY);

        Bitmap thumb = Bitmap.createBitmap(source, 0, 0,
            source.getWidth(),
            source.getHeight(), matrix,
            true
        );

        ContentValues values = new ContentValues(4);
        values.put(Images.Thumbnails.KIND,kind);
        values.put(Images.Thumbnails.IMAGE_ID,(int)id);
        values.put(Images.Thumbnails.HEIGHT,thumb.getHeight());
        values.put(Images.Thumbnails.WIDTH,thumb.getWidth());

        Uri url = cr.insert(Images.Thumbnails.EXTERNAL_CONTENT_URI, values);

        try {
            OutputStream thumbOut = cr.openOutputStream(url);
            thumb.compress(Bitmap.CompressFormat.JPEG, 100, thumbOut);
            thumbOut.close();
            return thumb;
        } catch (FileNotFoundException ex) {
            return null;
        } catch (IOException ex) {
            return null;
        }
    }
}

22
これで画像が保存されますが、カメラで写真を撮ると上部に保存されますが、ギャラリーの最後まで保存されます。ギャラリーの上部に画像を保存するにはどうすればよいですか?
eric.itzhak

19
また、manifext.xmlに<uses-permission android:name = "android.permission.WRITE_EXTERNAL_STORAGE" />も追加する必要があることに注意してください。
カイルクレッグ

3
内部的にinsertImageは日付メタデータを追加しないため、画像はギャラリーの上部に保存されません。このGISTを参照してください:gist.github.com/0242ba81d7ca00b475b9.gitこれは、insertImageメソッドの正確なコピーですが、日付のメタ日付を追加して、画像がギャラリーの前面に追加されるようにします。
S-K

1
@ S-K 'そのURLにアクセスできません。それを更新してください、そして私はそれが両方のオプションを持つように私の答えを更新します。乾杯
sfratini 2014年


48

実際、あなたはどこにでもあなたの写真を保存することができます。パブリックスペースに保存して、他のアプリケーションがアクセスできるようにするには、次のコードを使用します。

storageDir = new File(
    Environment.getExternalStoragePublicDirectory(
        Environment.DIRECTORY_PICTURES
    ), 
    getAlbumName()
);

写真がアルバムに反映されません。これを行うには、スキャンを呼び出す必要があります。

private void galleryAddPic() {
    Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
    File f = new File(mCurrentPhotoPath);
    Uri contentUri = Uri.fromFile(f);
    mediaScanIntent.setData(contentUri);
    this.sendBroadcast(mediaScanIntent);
}

詳細については、https: //developer.android.com/training/camera/photobasics.html#TaskGalleryをご覧ください。


1
実装全体を変更する必要がなく、アプリ用のカスタムフォルダーを作成できるため、これは非常にシンプルなソリューションです。
Hugo Gresse、2015年

2
ファイルのみをスキャンできる場合、ブロードキャストの送信はリソースの浪費になる可能性があります:stackoverflow.com/a/5814533/43051
ジェレミーレイノー

2
実際にビットマップをどこに渡しますか?
ダニエルレイハニアン

22

私はこれをマシュマロとロリポップで機能させるために多くのことを試みました。最後に、保存した画像をDCIMフォルダーに移動しました(新しいGoogleフォトアプリは画像がこのフォルダー内にある場合にのみスキャンします)

public static File createImageFile() throws IOException {
    // Create an image file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss")
         .format(System.currentTimeInMillis());
    File storageDir = new File(Environment
         .getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM) + "/Camera/");
    if (!storageDir.exists())
        storageDir.mkdirs();
    File image = File.createTempFile(
            timeStamp,                   /* prefix */
            ".jpeg",                     /* suffix */
            storageDir                   /* directory */
    );
    return image;
}

そして、Google Developersサイトにもあるファイルをスキャンするための標準コード。

public static void addPicToGallery(Context context, String photoPath) {
    Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
    File f = new File(photoPath);
    Uri contentUri = Uri.fromFile(f);
    mediaScanIntent.setData(contentUri);
    context.sendBroadcast(mediaScanIntent);
}

このフォルダは世界中のすべてのデバイスに存在できるわけではなく、Marshmallow(API 23)以降では、WRITE_EXTERNAL_STORAGEへのアクセス許可をユーザーに要求する必要があることに注意してください。


1
Googleフォトに関する情報をお寄せいただきありがとうございます。
ジェレミーレイノー

1
これはよく説明する唯一のソリューションです。他の誰も、ファイルがDCIMフォルダにある必要があるとは述べていません。ありがとうございました!!!
Predrag Manojlovic 2016年

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM)私のためにトリックをしました。ありがとう!
saltandpepper 2017年

2
getExternalStoragePublicDirectory()API 29では非推奨になりました
。MediaStore

@riggarooはいあなたは正しいですレベッカ、私は答えを
できるだけ早く

13

このコースによると、これを行う正しい方法は次のとおりです。

Environment.getExternalStoragePublicDirectory(
        Environment.DIRECTORY_PICTURES
    )

これにより、ギャラリーディレクトリのルートパスがわかります。


私はこの新しいコードを試しましたが、java.lang.NoSuchFieldErrorがクラッシュしました:android.os.Environment.DIRECTORY_PICTURES
Christian Giupponi

わかりました。Android<2.2でギャラリーに画像を配置する方法はありませんか?
クリスチャンジュッポニ

パーフェクト-Androidデベロッパーウェブサイトへの直接リンク。これは機能し、シンプルなソリューションでした。
Phil

1
良い答えですが、通常はGalleryアプリで新しい画像に気付く必要があるため、ここに他の答えから「galleryAddPic」メソッドを追加するとより良いでしょう。
Andrew Koster

11
private void galleryAddPic() {
    Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
    File f = new File(mCurrentPhotoPath);
    Uri contentUri = Uri.fromFile(f);
    mediaScanIntent.setData(contentUri);
    this.sendBroadcast(mediaScanIntent);
}

6

カメラフォルダ内にディレクトリを作成して画像を保存できます。その後、単純にスキャンを実行できます。ギャラリーに画像がすぐに表示されます。

String root = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM).toString()+ "/Camera/Your_Directory_Name";
File myDir = new File(root);
myDir.mkdirs();
String fname = "Image-" + image_name + ".png";
File file = new File(myDir, fname);
System.out.println(file.getAbsolutePath());
if (file.exists()) file.delete();
    Log.i("LOAD", root + fname);
    try {
        FileOutputStream out = new FileOutputStream(file);
        finalBitmap.compress(Bitmap.CompressFormat.PNG, 90, out);
        out.flush();
        out.close();
    } catch (Exception e) {
       e.printStackTrace();
    }

MediaScannerConnection.scanFile(context, new String[]{file.getPath()}, new String[]{"image/jpeg"}, null);

この基準ではこれが最良の答えです
Noor Hossain

1

私も同じ疑問を持ってここに来ましたが、Xamarin for Androidの場合、ファイルを保存した後、Sigristの回答を使用してこの方法を実行しました。

private void UpdateGallery()
{
    Intent mediaScanIntent = new Intent(Intent.ActionMediaScannerScanFile);
    Java.IO.File file = new Java.IO.File(_path);
    Android.Net.Uri contentUri = Android.Net.Uri.FromFile(file);
    mediaScanIntent.SetData(contentUri);
    Application.Context.SendBroadcast(mediaScanIntent);
} 

それで私の問題は解決しました、Thx Sigrist。Xamarinのアンサウェアが見つからなかったため、ここに配置しました。他の人の役に立つことを願っています。


1

私の場合、上記の解決策が機能しませんでした。

sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(f)));

このオプションについて知っておくのは本当に良いことですが、残念ながらAndroid 6を搭載した一部のデバイスでは機能しないため、ContentProvider推奨されるソリューション
Siarhei

0
 String filePath="/storage/emulated/0/DCIM"+app_name;
    File dir=new File(filePath);
    if(!dir.exists()){
        dir.mkdir();
    }

このコードはonCreateメソッドにあります。このコードはapp_nameのディレクトリを作成するためのものです。このディレクトリには、Androidのデフォルトのファイルマネージャーアプリを使用してアクセスできます。宛先フォルダを設定する必要がある場合は、この文字列filePathを使用します。私はそれをテストしたので、この方法はAndroid 7でも機能すると確信しています。したがって、それは他のバージョンのAndroidでも機能します。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.