Remove EXIF data online
Strip location, camera, and timestamp metadata from photos, entirely in your browser. Your images never leave your device, and the pixels are untouched.
Drag photos here, paste, or
JPG, PNG, WebP · multiple files welcome · nothing is uploaded
What EXIF data is
You photograph a bike in your driveway and post the picture in a for-sale listing. The picture shows a bike. The file also carries the GPS coordinates of your driveway, the minute you took the shot, and which phone took it.
That hidden layer is called EXIF, and most phones write it into every photo by default.
This page cuts it out.
One limitation belongs here rather than in the small print. The tool parses three file structures directly: JPEG, PNG, and WebP. Hand it a HEIC file from an iPhone and it declines instead of guessing. Hand it something whose structure it cannot read and it falls back to redrawing the image, which does remove the metadata but re-compresses the picture. When that happens, the result row says so.
How the cleaning works
Most metadata removers open your photo, decode it, and save a new one. That works, and it also re-compresses every pixel on the way out.
This one edits bytes.
A JPEG, PNG, or WebP file is a sequence of labeled blocks. The tool walks that sequence, drops the blocks holding metadata, and copies every remaining byte through unchanged. The image data is never decoded, so there is nothing to re-compress and no quality to lose. The cleaned file's pixels are identical to the original's.
Then it re-scans its own output and reports whether the second scan came back clean. If verification fails, it tells you not to trust that file.
Nothing is uploaded. Your photo is read from disk into the tab and goes no further. The byte editing runs on code this page already loaded from its own address, so once the page is open there is nothing left to fetch: you can disconnect from the internet and keep cleaning photos. The one exception is the "Download ZIP" button, which pulls a packer of about 97 KB, also from this site, the first time you press it.
You do not have to take that on faith. Open your browser's DevTools Network tab and clean a file. Nothing goes out.
The full source is public on GitHub under the AGPL-3.0 license, and the privacy page records that packer as the only thing fetched after load.
What comes out, and what stays in
Removed: EXIF, including GPS. XMP. IPTC and Photoshop blocks. Text comments. PNG timestamps. And anything appended after the image officially ends, which on Samsung and Google phones is often a short video clip with its own location track.
Kept: everything that affects how the picture looks. Color profiles, rendering settings, and the image data itself, byte for byte.
That trailing-clip removal is deliberate rather than incidental. A motion photo cleaned here becomes an ordinary still. The movement is gone, and so is the location data that rode along with it.
Questions
- Is there a free EXIF remover online?
-
Yes. This page.
It strips EXIF, GPS, and other embedded metadata from JPG, PNG, and WebP files in your browser. No upload, no install, no account, no watermark.
Drop a photo on it and a cleaned copy is ready to download.
- Are my photos uploaded to a server?
-
No.
The cleaning is byte editing performed by JavaScript this page loaded from its own site. Your photo is read into the tab and never sent anywhere.
Open DevTools, switch to the Network tab, and clean a file. No image data leaves.
- Does it remove GPS location?
-
Yes. Coordinates live inside the EXIF block, and the whole block is dropped.
The result row also tells you whether location data was present to begin with. People are surprised in both directions.
- Does the image quality change?
-
No, for any JPG, PNG, or WebP the tool can parse. Only metadata bytes are removed. The picture data is copied through untouched, so the cleaned file's pixels match the original's exactly.
The exception is a file whose structure it does not recognize. That one falls back to redrawing the image, which is lossy, and the row is labeled so you know it happened.
- Can I clean a batch of photos?
-
Yes. Drop in as many as you like.
Each gets its own result row and download button, or take them all at once, or as a single ZIP. The ZIP is the only action that fetches anything extra.
- What about motion photos?
-
Samsung and Google phones append a short video after the still image, and that clip carries its own location track. The tool removes it and reports how many bytes it dropped.
The still image survives. The motion does not. That is the intended behavior, not an accident.
- What about HEIC photos from an iPhone?
-
Not supported here, and the tool says so rather than pretending to work.
Convert them with the free HEIC to JPG tool first, then clean the JPGs on this page. That converter already drops metadata by default, so the second pass is mostly a verification.
Related tools
HEIC to JPG | convert iPhone photos before cleaning them here. Compress Images | shrink file size, which drops metadata as a side effect. Photo Editor | crop, resize, redact, and batch-edit images.