PictureSelector
PictureSelector copied to clipboard
LocalMedia 能否增加位置信息?经纬度信息
Current use version?
当前使用的版本是多少?
v3.0.9
有了这个信息,可以做很多的后续业务。麻烦考虑一下
我是这么获取的,使用版本v2.7.3-rc07
ExifInterface exifInterface = null;
try {
exifInterface = new ExifInterface(localMedia.getRealPath());
double[] latLon = exifInterface.getLatLong();
if (latLon != null && latLon.length >= 2) {
mediaFile.latitude = latLon[0];
mediaFile.longitude = latLon[1];
}
} catch (Exception e) {
e.printStackTrace();
}