How to remove metadata from photos before sharing
Every photo from a smartphone carries invisible data: GPS coordinates, the exact time it was taken, your device model, and sometimes a thumbnail of the original unedited image. This is EXIF metadata, and it travels with the file wherever the file goes. Removing it before sharing takes seconds, and there are several ways to do it depending on what device you are using.
Windows
Right-click the photo, select Properties, open the Details tab. At the bottom, click "Remove Properties and Personal Information." You get two choices: create a copy with metadata removed, or remove selected fields from the original. The first option is safer — it leaves your original untouched.
This method works for individual files or small batches (select multiple files, right-click, same steps). For hundreds of files, it becomes tedious.
macOS
macOS does not have a one-click metadata remover built in. Preview can export a file without location data through File → Export, but it does not strip all EXIF fields. The most reliable free method on a Mac is the command line — install exiftool via Homebrew (brew install exiftool) and run:
exiftool -all= photo.jpg
This strips everything. To process an entire folder: exiftool -all= *.jpg
iPhone (iOS)
When sharing a photo from the Photos app, tap "Options" at the top of the share sheet before choosing how to send it. You will see a toggle for "Location" — turn it off. The shared copy will not carry GPS coordinates.
This only strips location, not all metadata — the device model and timestamps still go through. And you need to remember to do it every time. If you want to strip everything, use a browser-based tool: open MetaScrub in Safari, select your photo, and download the cleaned version.
Android
In Google Photos, before sharing, tap the three-dot menu and look for "Remove location" or similar (wording varies by version). Like iOS, this only addresses location.
For complete removal, the same browser approach works: open MetaScrub in Chrome on your phone, select the photo, and download the stripped copy. No app to install.
Command line (any OS)
exiftool is the reference tool. It is free, open source, and handles every image format. Common commands:
exiftool -all= photo.jpg— remove everythingexiftool -gps:all= photo.jpg— remove only GPS dataexiftool -all= -overwrite_original *.jpg— batch strip without creating backup files
Exiftool modifies the file in place but creates a backup with an _original suffix by default. Add -overwrite_original if you do not want the backup.
Browser-based tools
If you cannot install software — a work computer, a borrowed laptop, a phone — a browser tool is the practical option. The important distinction is whether the tool uploads your file or processes it locally. Uploading a photo to strip its metadata for privacy reasons is a contradiction. MetaScrub processes files entirely in your browser; you can verify this by watching the Network tab in developer tools or by disconnecting from the internet after the page loads.
What removal does not fix
Stripping metadata removes the hidden data fields. It does not change anything visible in the image — a street sign, a reflection, a screen in the background. It does not change the filename, which sometimes contains dates or descriptive text. And it does not undo a share that already happened. If you already sent the unstripped photo, the recipient has the metadata. Removal only helps for the next share.
One last thing: keep your originals with metadata intact. EXIF is genuinely useful in your own library — it is how you search photos by date and location years later. Strip copies, not masters.
Remove photo metadata now · How to check if a photo has location data