Skip to content

Instantly share code, notes, and snippets.

@savvasdalkitsis
Last active November 18, 2022 13:38
Show Gist options
  • Save savvasdalkitsis/fc4f95a78b1d5f9433c6abdf30c56c76 to your computer and use it in GitHub Desktop.
Save savvasdalkitsis/fc4f95a78b1d5f9433c6abdf30c56c76 to your computer and use it in GitHub Desktop.
blog_post_exif_data
fun getLocation(photoUri: Uri): Pair<Double, Double> {
contentResolver.openInputStream(photoUri).use { stream ->
val latLon = ExifInterface(stream).latLong
return Pair(latLon[0], latLon[1])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment