PRACTICAL GUIDE
How to Remove Location Data From a Photo
What EXIF metadata records about you, when it actually leaks, and a straightforward way to strip it from an image without installing anything.
Last updated
What is hidden in a photo file
Alongside the pixels, most photographs carry a block of metadata called EXIF. Depending on the camera and its settings, it can include the exact GPS coordinates where the shot was taken, the date and time to the second, the make and model of the device, the lens, the exposure settings, and sometimes a camera serial number or the owner name configured on the device.
None of this is visible when you look at the picture. All of it travels with the file.
When it actually leaks — and when it does not
Large social platforms generally strip metadata when they process an upload, mostly because they re-encode the image for their own delivery pipeline. That is a side effect of their infrastructure rather than a promise to you, and it varies by platform and by upload path.
The metadata survives in the cases people worry least about: a photo attached to an email, a file sent through a chat app as a document rather than as an image, a picture uploaded to a small forum or a classified-ads listing, or a file handed over on a USB stick or shared drive.
The simplest reliable way to remove it
Re-encode the image. When a browser draws a picture onto a canvas and saves it again, it writes out only the pixels — the EXIF block from the original is not carried across. Resizing, cropping or converting an image in this way therefore produces a clean file as a matter of course.
Our resize, crop and format-conversion tools all work this way, and all of them run on your own device, so the photograph you are trying to keep private is not uploaded anywhere in order to be cleaned.
One important exception to know about
Our image compressor deliberately returns your original file untouched when compression would not make it smaller. That behaviour is good for file size and wrong for this job: if you get the message 'already optimised, original kept', you have your original file back, metadata and all. When your goal is stripping metadata rather than saving bytes, use the resize, crop or convert tools instead, since those always write a new file.
Verify rather than assume
After processing, check the result. On macOS, open the file in Preview and look at Tools then Show Inspector. On Windows, right-click the file, choose Properties and open the Details tab, where there is also a 'Remove Properties and Personal Information' option. On a phone, the photo details panel usually shows a map if coordinates are present. If the location has disappeared from the new file, the job is done.
Turn it off at the source
If you routinely share photos, the durable fix is to stop recording the location in the first place. Both iOS and Android let you deny location access to the camera app, which leaves the GPS fields empty on every future photo without changing anything else about how the camera works.
Frequently asked questions
Does cropping a photo remove the GPS coordinates?
It does when the crop is performed by re-encoding the image, which is how browser-based tools work — the output is written from pixels only. It may not when the editor is designed to preserve metadata across edits, as many desktop photo applications are. Verify the output rather than assuming.
Do these tools upload my photo to check it?
No. The image is decoded and re-encoded by your own browser on your own device. There is no upload step, which is the point: sending a photograph to a remote server in order to remove its location data would defeat the purpose.
Will removing EXIF change how the photo looks?
Removing the metadata itself does not. However, the act of re-encoding is what removes it, and re-encoding a JPEG applies one more lossy pass. Use a high quality setting, or convert to PNG, if the visual result matters more than the file size.
Does a screenshot of the photo work?
It does strip the metadata, because a screenshot is a new image containing no EXIF from the original. The cost is that you also lose resolution and add whatever the screen was displaying, so it is a crude solution compared with re-encoding the file properly.