Kit — image metadata
Remove Exif and location data from images
A photo file can carry the time it was taken, the camera body and its serial number, the lens, and the latitude and longitude of the place you stood. This lists what is actually in there first, then re-encodes the image in your browser so none of it comes out the other side.
This runs entirely in your browser. Nothing is uploaded.
Related tools
How this one is built
A tool that only says "done" leaves the real question unanswered: was there ever anything worth worrying about? The capture time, camera, lens, serial number and coordinates are listed before anything is removed — which also tells you what the photos you already sent were carrying.
Passing a position to a map service is a network request containing exactly the data you came here to remove. The latitude and longitude are printed on the page. There is no map link and no embed.
The Orientation tag is metadata too, so removing it naively lays every portrait photo on its side. Here the rotation is baked into the pixels first, so the image looks the same afterwards without needing a tag to say so.
Reading the result
Questions
Doesn't social media strip Exif anyway?
Major platforms usually do, but that is their choice, not a property of the file. Email attachments, chat apps sending "as a file", cloud share links and some marketplace listings can pass the original through untouched. "I posted it online once" does not carry over to a different route.
What actually goes wrong in practice?
Listing photos shot at home reveal the address. A run of posts reveals daily routine from the capture times. A camera serial number links separate photos to the same body, which is enough to connect accounts that were meant to stay apart.
Can you promise the output is completely clean?
No, and it would be dishonest to. The image is decoded and written out as a new file, so the original metadata blocks are not carried over — but what the browser's own encoder writes is outside our control. Re-inspect the output here, and use a second tool as well for anything that matters.
Does it handle video or RAW files?
No. JPEG, PNG, WebP and TIFF images only. Videos (MP4, MOV) and camera RAW files (CR3, NEF, ARW and friends) carry location data too, but they are out of scope for this tool.
Are my images uploaded?
No. Reading, parsing and re-encoding all happen in the page. Close the tab and nothing remains.