重複の可能性:
カスタム メタデータを Android の画像に追加できますか?
で試してみましExifInterface
たが、うまくいきませんでした。ファイルサイズを呼び出した後、実際に宛先ファイルに何かを書き込んでExifInterface.setAttribute()
いるかどうかはわかりません。ExifInterface.setAttribute()
コードスニペットは次のとおりです:-
ExifInterface exif = new ExifInterface(getPath(selectedImage));
exif.setAttribute("myAttribute", "myValue");
exif.saveAttributes();
ExifInterface exif1 = new ExifInterface(getPath(selectedImage));
Log.d("Company", exif1.getAttribute("myAttribute")); <----- Getting NPE as exif1.getAttribute("myAttribute") returns null
カスタムメタデッドを追加/取得する別の方法はありますか?