How to remove the location from a photo
Phone photos record where they were taken, to within a few metres. Here is how to check, how to strip it and what strips it for you.
A photo taken on a phone with location services enabled records the coordinates of the spot it was taken, usually accurate to a few metres. Nothing about the image shows this.
Check before you strip
It is worth seeing what is actually there, because the answer varies. A photo straight off a phone typically has full coordinates. The same photo after a trip through a messaging app may have nothing at all. A screenshot never had any.
The EXIF viewer shows the coordinates and links them to a map, which is the fastest way to understand how precise this is. People generally expect “somewhere in the city” and find the front of their own building.
Removing it
The right way
Rewrite the file without its metadata blocks and leave the compressed image alone. The photo that comes out is pixel for pixel the photo that went in, minus a few hundred bytes of text. That is what the EXIF remover does and it reports exactly which blocks it found and dropped.
The way most tools do it
Decode the image, draw it onto a canvas, save it again. The metadata is gone, because metadata doesn’t survive a decode, but the photo has also been through another round of lossy compression for no reason. On a photo that has already been compressed a few times, that is visible.
Converting also works, as a side effect
Converting a HEIC to a JPG or a PNG to a WebP, decodes the image and therefore loses the metadata. It is a reasonable approach when you were going to convert anyway and a poor one when you weren’t, for the same re-compression reason.
What can’t be removed this way
Anything visible in the picture. A street sign, a house number, a reflection in a window, a school uniform, a timestamp burned into the corner by a dashcam. Metadata stripping touches the invisible layer only and the visible layer is what people usually forget to check.
There is also the awkward middle case: an embedded thumbnail that predates a crop. Removing the metadata removes the thumbnail along with it, which is one more reason to strip rather than trust that a crop was enough.
Stopping it at the source
If you’re regularly stripping location from photos, turn it off in the camera instead. On iPhone, Settings, Privacy and Security, Location Services, Camera, Never. On Android, open the camera app’s settings and turn off the location or geotagging option. You lose the ability to see your photos on a map, which some people value and most never use.
Common questions
Do social networks remove location data automatically?
The large ones usually do, but you can’t see whether it happened and you can’t rely on it. Email attachments, messaging apps sending as a file, forums, marketplace listings and cloud folder shares commonly pass metadata straight through.
Does removing EXIF hurt the photo?
It doesn’t have to. A tool that rewrites the container leaves the compressed image identical, so nothing changes visually. A tool that decodes and re-saves the image does lose a little quality, which is why the method matters.
Can I stop my phone recording location in the first place?
Yes. On iPhone: Settings, Privacy and Security, Location Services, Camera, then Never. On Android it is a Location tag toggle inside the camera app's own settings. Both only affect photos taken afterwards.
Is the location gone for good once removed?
From that copy, yes. Any other copy of the file still has it, including the original in your camera roll and any version you already sent to someone, so strip before sharing rather than after.