有人知道是否可以检索现有图片的时间吗?所以我基本上想使用拍照的时间?
答案 0 :(得分:0)
使用图像创建一个ExifInterface
。然后,您可以获取任何可用的属性,包括拍摄图像的时间戳。 Documentation
String timestamp = exifInterface.getAttribute(ExifInterface.TAG_DATETIME);
答案 1 :(得分:0)
您应该使用ExifInterface
,它提供有关图像的信息,例如方向,创建日期和时间(如果可用)
ExifInterface exif = new ExifInterface(pathToTheImage);
String datetime = exif.getAttribute(ExifInterface.TAG_DATETIME);
更多属性请看here