Removing the location from a photo

Guide · 14 August 2026

In one sentence. A photo taken on a phone usually records where it was taken to within a few metres, which device took it, and when — and that data travels with the file every time you send it.

What a photo knows about you

The picture is only part of the file. Alongside it sit blocks of metadata, and on a typical phone photo they contain rather more than people expect:

  • Coordinates, in the EXIF GPS block: latitude, longitude, often altitude and direction, and the time in UTC. Precise enough to identify a specific building.
  • The device: make, model, lens, and on some cameras a serial number that links every photo you have ever taken with it.
  • The software: which application edited the file, and often its version.
  • Timestamps: when the shot was taken, down to the second.
  • Author and copyright, if your camera or editor was configured with them.
  • A thumbnail — a small copy of the image, embedded separately. This one has a nasty habit: crop something out of a photo with the wrong tool and the old, uncropped thumbnail can survive inside the file.

Why "the platform strips it anyway" is not a plan

Several large platforms do remove metadata on upload, as a side effect of recompressing what you send them. But this is a property of that one upload path, not of your file. Send the same photo by email, by messaging app, in a shared folder, or to a platform that keeps the original quality, and everything is still there. Relying on someone else's pipeline means the answer changes depending on the route your file takes — and you rarely control that.

The part most tools get wrong

The usual way to remove metadata is to open the image and save it again. That decodes and recompresses the picture: JPEG is lossy, so you lose a little quality every time, and the file you publish is not the file you shot.

It is avoidable. Metadata lives in identifiable structures — segments in a JPEG, chunks in a PNG, RIFF blocks in a WebP — and those can be removed surgically, leaving the compressed image data untouched. QuietMeta does this: after cleaning, the pixels are bit-for-bit identical to the original. No decoding, no re-encoding, no quality loss.

One detail matters here and is a common source of complaints elsewhere: orientation. Many photos are stored rotated, with an EXIF field telling the viewer to turn them. Strip everything and the picture appears sideways. QuietMeta keeps that single field in a minimal block of 34 bytes, so the image still displays the right way up while everything else goes.

Documents have the same problem

A Word, Excel, PowerPoint or OpenDocument file carries author names, the company the licence is registered to, revision counts and total editing time. A PDF keeps them in two separate places: the /Info dictionary and an XMP stream. Cleaning only the first is the classic mistake — the author's name is still in the file, in the second one. Both need to go.

How to check, rather than hope

The only claim worth making about a privacy tool is one you can verify. After cleaning, QuietMeta reads the produced file again and shows you what is now present and what is gone. Not a promise that it worked: a fresh reading of the actual result.

It also shows what it could not remove, and what it cannot check at all. Some watermarking schemes have no public specification, so no third party can measure them; saying so is more useful than implying complete coverage.

Doing it

Drop a photo on the home page to see everything it reveals, then choose the categories to remove: location, device, software, author, description, timestamps, thumbnail. Reading works on JPEG, PNG, WebP, GIF, TIFF, HEIC, AVIF, PDF and the office formats; removal works on JPEG, PNG, WebP, PDF and the office formats.

Files sent to the web version are held in memory for one request and released — never written to disk, a database or a backup. For whole folders at once, or for files you would rather not send anywhere at all, the desktop application does the same work offline.

Inspect a photo Get the desktop app

Related