I just vibe coded a tiny webapp tool for checking and cleaning image metadata:
Live preview: https://img-metadata.vercel.app/
It reads EXIF / XMP / IPTC straight from an uploaded image in the browser (no backend upload), shows everything in clear key/value tables, and for JPEG images it can remove or edit privacy fields and let you download a new image with the same pixel data.
Why scrubbing metadata matters 
When you share photos online, you might accidentally leak:
GPS coordinates (exact location)
Time + timezone (your timeline / travel patterns)
Stable IDs (e.g. ImageUniqueID) that can link photos together
Quick mental model: image structure 
An image file isnβt just pixels:
Image file
βββ Pixel data (visual content)
βββ Metadata
βββ EXIF β camera, time, GPS (most privacy info)
βββ XMP β author, edits, copyright
βββ IPTC β captions, creator, location text
βββ Other technical info (color profile, orientation)
