Every photo your phone or camera takes carries a hidden payload of EXIF metadata — the device make and model, the precise capture date and time, lens and exposure settings, the editing software you used, and frequently the exact GPS coordinates of where you were standing. Most people never see this data, yet it travels with the file every time they message, email or post a picture. This EXIF metadata stripper reveals exactly what is buried inside your image and then produces a clean copy with all of it removed, without ever uploading the photo anywhere.
How it works
When you drop an image onto the tool it reads the raw bytes locally and parses the file
structure. For a JPEG it walks the marker segments, decodes the APP1/EXIF block including
the camera IFD and the dedicated GPS IFD, and also notes any XMP, IPTC or comment
segments. For PNG and WebP it inspects the chunk identifiers that commonly carry text and
EXIF data. Anything sensitive — GPS latitude and longitude, serial numbers, owner names,
timestamps — is highlighted in red so you understand the privacy stakes before you act.
To remove the metadata, the tool paints the decoded pixels onto an off-screen HTML
canvas. A canvas only stores raw RGBA colour values, so when the browser re-encodes those
pixels into a new JPEG, PNG or WebP, there is physically no EXIF, GPS, XMP or IPTC block to
carry forward. The output is a brand-new image containing only the picture itself. Finally,
the tool re-reads the freshly encoded bytes and runs the same scanner over them again — a
verification pass that proves zero metadata bytes survived rather than just assuming it.
Example
Suppose you upload beach-holiday.jpg straight off your phone. The scan reports a JPEG
file with a red GPS location embedded badge, plus rows for Camera make,
Camera model, Software, Date taken and the GPS latitude and longitude. You pick JPEG
output at 92% quality and click Strip metadata. A second later you get a clean preview
labelled ✓ Clean image ready, the verification line reads 0 bytes of metadata — EXIF & GPS removed, and you download beach-holiday-clean.jpg. The picture looks identical, but
it no longer tells anyone where you were.
You can also use the format selector to convert on the way out — load a heavy JPEG and export a metadata-free PNG, or shrink a PNG into a smaller WebP — all while guaranteeing the result is free of tracking data.
When to use it
Strip metadata before posting photos to social media, selling items on a marketplace, sending images to people you do not know well, or publishing pictures on a public website. It is especially important for photos taken at home, since the embedded GPS tag can point directly to your front door. Because the whole process is client-side, you can clean sensitive or confidential images without trusting any third-party server.