Tested tool guide
Tested browser tools
Checked August 16, 2026
What EXIF Data Editor does, with a checked example
Every photo taken on a phone or camera carries a hidden block of EXIF metadata alongside its pixels: the date it was taken, the camera make and model, lens, focal length, shutter speed, ISO, and often the GPS location. This tool parses that block, presents the fields as editable form entries, and writes your changes back into the image file you download and share. The pixels themselves are never touched. The usual surprise is that editing EXIF does not anonymize a photo: dozens of tags remain, and many platforms strip or re-stamp metadata anyway, so the edit is not always visible to recipients.
Worked example
A concrete input and expected output from the current implementation.
Input
2024-03-02 10:15:30, entered as the new Date taken for a loaded JPEG
->
Expected output
A download of the same JPEG whose DateTimeOriginal tag now reads 2024:03:02 10:15:30, with camera model, lens, ISO, and GPS tags unchanged and the photo rendering exactly as before.
The EXIF specification stores date tags as fixed 19-character ASCII strings in the form YYYY:MM:DD HH:MM:SS, so a compliant writer records the value with colons, not dashes. Metadata is stored apart from pixel data, which is why the picture itself is unaffected.