gpt4 book ai didi

android - 如何将sdcard中图片的经纬度获取到我的应用程序中?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:25:16 24 4
gpt4 key购买 nike

我可以从我的应用程序打开图库。有没有什么方法可以将图库中任何选定图像的纬度和经度获取到我的应用程序?

最佳答案

您实际上可以使用“内置”函数:

ExifInterface exif = new ExifInterface(path);
float[] latLong = new float[2];
boolean hasLatLong = exif.getLatLong(latLong)
if (hasLatLong) {
System.out.println("Latitude: " + latLong[0]);
System.out.println("Longitude: " + latLong[1]);
}

也许是新东西,但我认为比公认的答案方便得多。

关于android - 如何将sdcard中图片的经纬度获取到我的应用程序中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15403797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com