如何在 Android 中获取捕获图像的详细信息

发布于 2024-11-28 22:45:28 字数 62 浏览 0 评论 0原文

我想知道如何从捕获的图像中获取图像细节。例如纬度、经度和标题。我的程序捕获图像,我想获取其详细信息以进行编程。

I want to know how to get image details from captured image. like latitude and longitude and title. My programme capture image I want to get its details to programme.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七颜 2024-12-05 22:45:28

要获取图像详细信息,请使用:

final ExifInterface exif = new ExifInterface(imageUri.getPath());
final int rotation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                                ExifInterface.ORIENTATION_NORMAL);
final String datestamp = exif.getAttribute(ExifInterface.TAG_GPS_DATESTAMP);
final String gpsLatitude = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE);
final String gpsLatitudeRef = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE_REF);
...

To get image details use:

final ExifInterface exif = new ExifInterface(imageUri.getPath());
final int rotation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
                                ExifInterface.ORIENTATION_NORMAL);
final String datestamp = exif.getAttribute(ExifInterface.TAG_GPS_DATESTAMP);
final String gpsLatitude = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE);
final String gpsLatitudeRef = exif.getAttribute(ExifInterface.TAG_GPS_LATITUDE_REF);
...
枯寂 2024-12-05 22:45:28

使用 ExifInterface 您可以获取捕获图像的属性(前提是您的相机已配置)写下它们

Using ExifInterface you can get attributes of the captured image provided your camera was configured to write them

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文