NOTHING IS UPLOADED — OPEN YOUR NETWORK TAB AND WATCH

Strip EXIF from
a JPEG

Removes the metadata segments and leaves every pixel exactly as it was. Nothing is uploaded.

Drop a file here

Or choose one — it is read directly from your disk and never leaves this tab.

JPEG · PNG · HEIC · WEBP · PDF · DOCX · XLSX · PPTX
Home / Guides

What gets removed

The EXIF block, which holds GPS, camera, lens and owner information. Any XMP block written by an editor. The Photoshop IPTC record. Free-text comment segments. The embedded preview thumbnail, which can otherwise show a pre-crop version of the image.

What stays

The image itself, byte for byte. A JPEG is a sequence of labelled segments, and the compressed picture data is one of them. Removing the others does not touch it, so there is no re-encoding and no quality loss of any kind.

Why not just re-save it

Re-saving through an image editor does strip metadata, but it also re-compresses the picture and loses a little quality each time. Removing the segments directly avoids that entirely.

Common questions

Does removing EXIF reduce JPEG quality?

No. The picture data is left untouched and never re-compressed.

Does this remove the GPS location?

Yes. GPS tags are part of the EXIF block that gets removed.

Can I do this in bulk?

This page handles one file at a time. For bulk work on your own machine, the exiftool command line utility is the standard choice.

Related