EXIF Metadata Editor for Images and Videos
Change a photo's hidden metadata — title, author, copyright, date taken, camera, and GPS location — then download an edited copy. Editing a JPEG is lossless. Or strip every tag in one click. Everything runs in your browser; the file is never uploaded.
Requested by Induwara
How it works
Every JPEG carries an EXIF (Exchangeable Image File Format) block alongside its pixels, holding the camera, exposure, date, and — if location was on — GPS coordinates. This tool opens that block, lets you change the values that are safe to write, and saves a new file, all without sending your photo anywhere.
- Reading. Your JPEG is read in the browser with
piexifjs, an open-source library that parses the TIFF/IFD0, Exif sub-IFD, and GPS IFD. The existing values are pre-filled into the form so you edit, not retype. - Writing text tags. Title, author, copyright, software, and the camera make and model are stored as Exif ASCII tags (for example Artist is tag 0x013B). The editor writes exactly the tag each field maps to, and clearing a field deletes that tag rather than writing an empty one.
- Dates. The capture date is written to
DateTimeOriginalin the Exif formatYYYY:MM:DD HH:MM:SS. The tool converts from the browser's date picker and validates the result before saving. - GPS. Coordinates you enter as decimal degrees are converted to the Exif layout of three rationals — degrees, minutes, and seconds — using
D = floor(x), M = floor((x−D)×60), S = ((x−D)×60−M)×60, with the hemisphere stored as a separate N/S/E/W reference. The result is verified by converting it back with the inverse formulax = D + M/60 + S/3600and confirming the two agree. - Saving. The rewritten metadata is inserted back into the original JPEG. Only the metadata segment changes, so the image data is byte-for-byte identical — the edit is lossless. The clean-strip option instead removes the entire metadata segment.
EXIF is specific to JPEG and TIFF, so PNG, WebP, HEIC, AVIF, and video files can't have individual tags edited here. For those, the tool still offers a privacy strip: raster images are re-encoded through a canvas, which carries the pixels only and drops every embedded tag.
Worked examples
Frequently asked questions
Sources & references
- CIPA DC-008 / JEITA CP-3451 — Exif 3.0 specification (tag ids, ASCII/RATIONAL types, GPS IFD, datetime format)
- ISO 6709:2008 — standard representation of geographic point location
- piexifjs — the open-source JPEG EXIF read/write library used by this editor
The tag mapping and GPS conversion formulas on this page were last reviewed on 2026-06-02. The GPS conversion is cross-checked against a second formula inside the tool.
Related tools
Comments & feedback
Spotted a bug or want an improvement? Tell us — our team reviews every comment, and good ideas get built. Comments are public and anonymous.
Found a bug, edge case, or want to suggest an improvement?
Email me at [email protected] — most fixes ship within 24 hours.