How to Remove Location Data From an iPhone Photo
By Andrew Butson · July 2, 2026 · 7 min read
Every photo your iPhone takes is geotagged by default, down to the metre, in a field embedded inside the file itself. It's invisible on screen, so most people never think about it until they're about to send a photo somewhere it really shouldn't carry an address: a marketplace listing, a photo to a stranger, a post going out publicly.
There are really two separate problems here, and they need two different fixes. One is stopping your phone from recording location on future photos in the first place. The other is stripping it from a photo you've already taken, when you need to hand over the picture itself with nothing attached to it. This guide covers both, plus the one method that guarantees the second is actually done.
Stop it before you share: the share-sheet toggle
For a one-off photo you're about to send, iOS has a built-in option on the share sheet itself. When you tap Share on a photo, look for an "Options" link near the top of the share sheet (its exact position varies by iOS version and by which app you're sharing to). Tapping it opens a small panel with a Location toggle: switch it off and the copy that gets sent won't carry the GPS tag.
This is the quickest fix and the one worth building into habit for anything going to someone outside your contacts or into a public post. Its limitation is that it's manual and per-share: forget to tap it once, and that copy goes out geotagged as normal.
Stop it at the source: turn off Camera location entirely
If you'd rather never think about it again, you can stop the Camera app from recording location at all. Go to Settings → Privacy & Security → Location Services → Camera, and set it to Never. From that point on, new photos you take simply won't have a GPS tag written into them. There's nothing to remember to toggle later.
The trade-off is that you lose location data everywhere you might actually want it: Photos' map view, memories that group shots by place, and any app that sorts or captions photos using where they were taken. Some people set this to "Never" permanently; others prefer "While Using the App" as a middle ground, which still geotags photos but only while Camera is the active, in-use app. Either way, this setting only affects photos taken after you change it. It does nothing to photos already sitting in your camera roll.
Run the converted file through /inspect to confirm the location data is actually gone: read locally, nothing uploaded.
Runs entirely in your browser — nothing is uploaded.
AirDrop doesn't strip anything
It's a common assumption that AirDrop, being an Apple-to-Apple transfer, must clean up the file along the way. It doesn't. AirDrop moves the file itself, byte for byte, from one device to another: that's the entire point of it being fast and lossless. A photo AirDropped between your own devices, or to someone else's iPhone, arrives with exactly the same EXIF and GPS data it left with. If the share-sheet location toggle wasn't switched off before you AirDropped it, the location travelled along with the file.
When you need the picture with absolutely nothing attached
The share-sheet toggle and the Camera location setting both work by controlling what iOS writes or forwards, which is fine for routine sharing, but neither guarantees the file is clean in a way you can independently verify, and neither helps with a photo you already took months ago with location on. For a marketplace listing, a photo going to someone you don't know, or any original file you're about to post publicly, the more reliable approach is to convert the file itself.
Converting a HEIC or JPEG photo to another image format (HEIC to JPG is the most common case, since that's the format iPhones save in by default) rebuilds the file from the decoded pixels rather than copying the original bytes forward. GPS coordinates, timestamps, device details, and the rest of the EXIF block don't survive that rebuild, because there's no step in a straightforward re-encode where they'd be carried across. Morphr's /heic-to-jpg converter does this entirely in your browser, using WebAssembly: the photo is never uploaded anywhere, which you can confirm yourself by opening DevTools' Network tab before you convert and watching nothing go out.
The way to be certain rather than just confident is to check the result. Run the converted file through Morphr's /inspect tool — again, entirely local — and it will show you exactly what metadata, if any, survived. For a straightforward HEIC-to-JPG conversion, the location and camera fields should be gone; /inspect confirms that rather than asking you to take it on faith.
Two honest caveats
A screenshot of a photo carries no location data: screenshots are generated fresh by iOS and have no GPS field to begin with, so if you're worried about a specific image, a screenshot of it is one blunt way to be sure. It's a lossy option (it recompresses and can leave artefacts), but it's a genuinely metadata-free copy.
The other caveat cuts the other way: an iCloud shared link (a shared album, a Photos link you send someone) can carry location data even after you thought you'd dealt with it, because it's linking to the underlying asset in iCloud rather than a version you've individually stripped. If you're relying on a shared link rather than a file you've explicitly cleaned or converted, don't assume the share-sheet toggle covers it.
Frequently asked questions
- If I turn off Camera location in Settings, does that remove GPS from photos I already took?
- No. That setting only stops new photos from being geotagged going forward. It has no effect on photos already saved in your camera roll. Existing photos keep whatever metadata was written at the moment they were taken until something explicitly strips or rebuilds the file, like converting it.
- Does converting a photo to JPG lose quality along with the location data?
- Converting HEIC to JPG does re-encode the image, and JPEG is a lossy format, so there's a small amount of recompression. In practice it's rarely visible at normal viewing sizes and quality settings, and it's the trade-off that comes with any method that reliably rebuilds the file rather than just editing a tag.
- Do Live Photos and videos carry location data the same way?
- Yes. Live Photos and videos captured on an iPhone are geotagged through the same Location Services setting as still photos, and the same share-sheet Options toggle applies to them when you share. Stripping metadata from video is a separate, more involved process than converting a still image, though, so if you're handling a sensitive video, treat it as its own problem rather than assuming the photo advice covers it directly.
- Is it enough to just crop out identifying details in the photo itself?
- No. Cropping changes what's visible in the image but does nothing to the EXIF data embedded in the file, which is a separate layer from the pixels. A tightly cropped photo can still carry the exact GPS coordinates of where it was taken; the crop and the metadata have to be dealt with separately.