4
A
回答
8
有很好的教程如何訪問EXIF數據(包括你需要GPS信息)從JPG,可以幫助你:
http://android-coding.blogspot.com/2011/10/read-exif-of-jpg-file-using.html
對應的類在官方的文檔中描述:
http://developer.android.com/reference/android/media/ExifInterface.html
而且有用的帖子(轉換GPS信息),可以發現:
http://android-coding.blogspot.com/2011/10/convert-gps-tag-of-exifinterface-to.html
+0
http://stackoverflow.com/questions/33798250/how-to -get-位置和其他信息,從圖像功能於機器人 –
0
這是我如何做的:
try {
final ExifInterface exifInterface = new ExifInterface(imagePath);
float[] latLong = new float[2];
if (exifInterface.getLatLong(latLong)) {
// Do stuff with lat/long...
}
} catch (IOException e) {
logger.info("Couldn't read exif info: " + e.getLocalizedMessage());
}
相關問題
- 1. 如何訪問Android中的字符串數組位置?
- 2. 臨時訪問數據庫的位置
- 3. Android - 訪問存儲位置
- 4. 如何設置和訪問android中的數據庫
- 5. 如何從中央位置存儲和訪問SQLite數據庫?
- 6. 如何插入位置到Android數據庫中的位置
- 7. Android - NDK - 從C++訪問的數據庫的位置
- 8. 如何訪問位置?
- 9. 從程序中的任何位置訪問函數-Android
- 10. 在android中通過GPS訪問位置
- 11. 從服務中訪問android位置?
- 12. 在android中訪問數據
- 13. Android。提示訪問設備的位置
- 14. 訪問位置參數
- 15. Android如何訪問數據庫
- 16. 如何訪問iframe的當前位置?
- 17. 如何訪問一個燼模板中的數組位置?
- 18. 如何訪問嵌套數組中的最後一個位置
- 19. 如何在Python中訪問整數列表的特定位置?
- 20. 如何在android中訪問多個數據庫表數據?
- 21. 我如何從android位置服務訪問緯度和經度等位置數據?
- 22. 如何在iphone中設置數據庫和訪問數據庫
- 23. 訪問ARGB_8888中的原始數據Android位圖
- 24. 如何訪問位於機器位置0的中斷向量?
- 25. 爲什麼數據段中的位置0不可訪問?
- 26. Android中的位置問題
- 27. 如何在KTM中訪問數據庫定位器中的關係數據庫
- 28. 如何從contextMenu訪問ListItem位置
- 29. 如何從網頁訪問iPhone位置?
- 30. Android中的數據庫訪問
看看這個,我覺得這正是你想要的東西: [http://stackoverflow.com/questions/9868158/get-gps-location-of-a-photo][1 ] [1]:http://stackoverflow.com/questions/9868158/get-gps-location-of-a-photo – Bigflow