Manipulating stored geocoordinates in cellphone photos
exiftool to the Rescue
Although there is a go-exif2 library for Go which reads Exif tags, there is no easy-to-use library that writes new tags or refreshes the existing tags in a JPEG file. This is why Listing 1 resorts to the Unix utility exiftool
. On Ubuntu, this jack-of-all-trades can be set up via the package manager (Listing 5, first line). The tool expects coordinates in a floating-point format and either creates or refreshes the corresponding Exif tags in a JPEG image file (second line).
Listing 5
Editing Exif Tags
01 $ sudo apt-get install exiftool 02 $ exiftool -gpslatitude=37.<xx> -gpslongitude=-122.<yy> file.jpg
The patch()
function from line 42 of Listing 1 calls the tool from Go via the os/exec
interface. It takes the name of a program including parameters. To collect the output of the command-line utility invoked, programmers provide a byte buffer, assigned to the Stdout
and Stderr
outputs. Run()
starting in line 52 invokes the external process, grabs its output, and checks the exit code.
Normally, exiftool
returns with an exit code of
. In this case, the error err
in line 53 is equal to nil
, and patch()
returns to the caller (the main program) after the work is done. exiftool
modifies the JPEG file given to it directly and stores a backup of the original in x_original
, but geofuzz
is not interested in this, and therefore simply ignores it, leaving it in the same directory.
To generate an executable geofuzz
binary from the source code in Listing 1, Listing 6 shows the Go commands for initializing a Go module and compiling the code while automatically downloading any dependencies from GitHub. Then you just need to install geofuzz
in a path listed in your PATH
variable, and a quick call to geofuzz file.jpg
quickly drops a privacy-friendly obfuscation layer over the geotags in the file. Curious online snoopers will be furious, because they'll be searching in the wrong part of town!
Listing 6
Generating the Binary
01 $ go mod init geofuzz 02 $ go build geofuzz.go
Infos
- Exif format: https://en.wikipedia.org/wiki/EXIF
- GeoImgr: https://tool.geoimgr.com
- "Programming Snapshot: Go program finds photos with nearby GPS coordinates," by Mike Schilli, Linux Magazine, issue 225, August 2019, p. 44, https://www.linux-magazine.com/Issues/2019/225/Programming-Snapshot-Go/(language)/eng-US
- Generating random locations nearby?: https://gis.stackexchange.com/questions/25877/generating-random-locations-nearby
« Previous 1 2
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.