Our official iOS app is live on the App StoreDownload free

Why Do Photos Lose Location When Shared?

· 4 min read

Short answer

Photos lose location when shared because publishing platforms re-encode every upload to save bandwidth, and re-encoding writes an entirely new file without the original metadata block. It is a side effect of compression rather than a privacy feature anyone ever promised you.

Understanding the mechanism is worth more than memorising which app does what, because the mechanism is stable and the app list changes every few months.

What actually happens during an upload?

The platform decodes your image, resizes it to its own standard dimensions, and re-encodes it as a fresh file. Metadata is not copied across in that process, so the GPS coordinates, camera model and timestamps all vanish with the original file.

Nothing in that sequence is about privacy. Serving a 12-megapixel original instead of a 1080 px copy multiplies a platform’s bandwidth bill several times over. It is about storage and delivery: serving a 12-megapixel original to every viewer would cost the platform enormously more than serving a resized copy. The metadata goes because it was never part of what got copied.

This is why the behaviour is so consistent across otherwise unrelated services, and why it changes without announcement when a pipeline is rewritten.

Which routes keep the location?

The ones that move a file rather than display it: email attachments at full size, cloud storage links, direct transfers such as AirDrop, and messaging apps when you send an image as a document rather than as a photo.

Apple Messages is a notable exception on the publishing side — a photo sent through iMessage arrives with its EXIF intact, which is exactly why Apple documents the share-sheet Location toggle as the workaround. The full route-by-route breakdown is in the platform comparison.

Is losing metadata good or bad?

Both, depending on which side of the photo you are on. It protects the person who forgot to strip their coordinates, and it destroys the provenance of images used as evidence, along with the capture dates that make an archive searchable.

SituationEffect of stripping
Posting a photo of your homeProtective — coordinates never published
Journalism and verificationDamaging — provenance destroyed
Sharing an archive with familyDamaging — capture dates and places lost
Selling something onlineProtective, when the platform actually does it
Insurance or legal evidenceDamaging — the file no longer proves anything
Who gains and who loses

The asymmetry is the point: you cannot rely on it for protection and you cannot prevent it when you need the data preserved. Both require doing something deliberate yourself.

Does losing metadata make a photo untraceable?

No. Stripping removes the coordinates, not the evidence in the frame. Architecture, signage, vegetation, road markings and the angle of the light all survive, and all of them indicate a region.

This is why "the platform strips metadata" is a weaker guarantee than it sounds. Locating a photo with no metadata at all is an ordinary task, not an exotic one.

What should you actually do?

Treat stripping as something you do, not something done for you. Remove location before uploading anything sensitive, keep originals with their metadata in your own archive, and test any route you rely on rather than assuming.

  • Strip location yourself before publishing — do not delegate it to a platform.
  • Keep your originals intact; capture dates cannot be recovered once lost.
  • Send as a document, or at Actual Size, when you want the metadata to survive.
  • Test the specific route with a geotagged photo — it takes two minutes and settles it.

Frequently asked questions

Why did my photo lose its location after sending it?
The app re-encoded it. Publishing and messaging platforms resize uploads for delivery, and the new file is written without the original metadata block.
Can I get the location back?
Not from the stripped copy — the tags are gone. If you still have the original file, it retains them, which is why keeping originals matters.
Which apps do not remove photo location?
Anything that transfers rather than publishes: email at full size, cloud links, AirDrop, and messaging apps when you attach the image as a document. Apple Messages preserves it even for normal photo sends.
Should I rely on platforms to remove my location?
No. The behaviour is a side effect of compression, differs between an app’s web and mobile clients, and changes without notice. Strip it yourself when it matters.

Sources

  1. Exif 3.1 (CIPA DC-008-2026)Camera & Imaging Products AssociationDefines the metadata block discarded during re-encoding.
  2. GPS AccuracyGPS.govWhat the discarded coordinates were worth: a 4.9 m radius under open sky.

Keep reading