Remove GPS location from photos

See the coordinates a camera recorded, then drop the whole metadata block that holds them

The tool loads here. It needs JavaScript, because the work happens on your device.

Your files and your privacy

Your photograph is never uploaded, and neither are its coordinates. The file is read into this browser tab, parsed there, and the cleaned copy is built there from the original bytes. The position is printed as plain numbers and no map is loaded, because requesting a map tile would send your location to another company.

What this tool does

Find out whether a photograph records where it was taken, and write a copy without that location. The coordinates live inside the EXIF block, and removal works by dropping that block, so everything else in it goes at the same time.

A phone with location services enabled writes a GPS sub-directory into the photograph: latitude, longitude, altitude, the direction the camera faced, how fast you were moving and the date you were there. This page reads that sub-directory, converts the degrees-minutes-seconds values into decimal coordinates you can read, and then writes a copy of the file with the metadata block removed. The detail that matters is that removal is not selective: the GPS sub-directory sits inside the EXIF block, and the cleaning step drops that whole block, so the camera make and model, the original timestamp, the exposure settings and the lens details go with the location.

How to use it

  1. Choose the JPEG, PNG or WebP you are about to share.
  2. Look at the highlighted panel: a readable position is shown as decimal latitude and longitude, to six places.
  3. Select Remove metadata, then check the removed list; on a JPEG the entry you are looking for is APP1 (Exif).
  4. Select Verify to re-read the cleaned bytes, then download the copy, which is saved with a -no-metadata suffix.

Example use cases

Supported input and output

Accepts

Produces

What this tool will not do

Common mistakes

Technical notes

The GPS values are reached through the IFD0 pointer at tag 0x8825, read as rational triples and converted to signed decimal degrees using the hemisphere reference, so a south or west reference produces a negative number. Removal never decodes the picture: in a JPEG the APP1 Exif segment holding that directory is skipped while the remaining marker segments are copied and the entropy-coded scan data is appended verbatim; in a PNG the eXIf chunk is dropped whole, so no CRC is recomputed and IDAT is untouched; in a WebP the EXIF chunk is dropped, the EXIF and XMP presence bits in the VP8X flags byte are cleared, and the RIFF size field is rewritten.

Frequently asked questions

Can I remove the GPS data but keep the camera settings?
No. The location is stored inside the same EXIF block as the make, model, timestamp and exposure fields, and the cleaning step removes that block as a unit. If you need the technical fields, record them from the table before you clean the file.
Why is there no map next to the coordinates?
Because asking for a map tile would hand your location to whichever company serves it, from a tool whose entire promise is that your data stays on your device. The numbers are shown so you can decide for yourself where to paste them.
Does removing the location damage the photo?
The pixels are untouched: the compressed image data is copied through byte for byte, so there is no re-encoding and no quality loss. What can change is display orientation, if the picture depended on the EXIF Orientation tag that was removed with the block.
My iPhone photos are HEIC. Can I clean those?
Not here. The HEIF container is not parsed by this tool, so those files are rejected rather than returned uncleaned. Convert to JPEG first and check the JPEG on this page, because a conversion may or may not carry the GPS fields across.