What Is EXIF Data?
EXIF (Exchangeable Image File Format) is a standard for storing metadata inside image files. Every time your phone or camera takes a photo, it embeds a bundle of information into the file itself — invisible to the naked eye, but easily readable by anyone with the right tool.
This metadata was designed to help photographers organize their work: camera settings, exposure values, color profiles. But modern smartphones add much more than that, including data you probably don't want strangers to see.
What EXIF Reveals About You
Here's a real-world example of what a single smartphone photo can contain:
- GPS coordinates — latitude and longitude pinpointing where the photo was taken, often accurate to within a few meters
- Date and time — exact timestamp of when the shot was captured
- Device model — "iPhone 15 Pro Max" or "Samsung Galaxy S24" — identifying your specific phone
- Camera settings — aperture, shutter speed, ISO, focal length
- Software version — which OS version and editing tools were used
- Thumbnail — a small preview that may show the original image before you cropped it
- Serial numbers — some cameras embed unique hardware identifiers
When you share a photo on a public forum, anyone can download it and extract this data in seconds using free tools. The GPS coordinates alone can reveal your home address, workplace, or frequented locations.
How to Strip EXIF on Upload
kinja-img.com makes this a single checkbox:
- Go to kinja-img.com
- Select your image
- Check the "Strip EXIF" checkbox below the upload area
- Upload — the resulting file contains zero metadata
That's it. The uploaded image will look identical to the original, but all hidden metadata is gone. GPS coordinates, device info, timestamps — all removed before the file is saved to the server.
How the Stripping Works
When you check "Strip EXIF", the server doesn't just delete metadata tags — it re-renders the image from scratch using PHP's GD library. The process:
- The original image is decoded into raw pixel data
- A new image is created with identical dimensions and pixel content
- The new image is encoded in the original format (JPEG, PNG, etc.)
- The original file is discarded
This approach is more thorough than simply removing EXIF tags, because some metadata can hide in non-standard locations within the file. By re-rendering from pixels, only the visual content survives — nothing else.
When You Should Always Strip EXIF
- Sharing photos on forums or social media — unless you want the world to know where you live
- Selling items online — photos of products taken at home reveal your home coordinates
- Bug reports and screenshots — device info can be unnecessarily revealing
- Any photo taken at a private location — home, school, workplace
- Photos of children — especially important to remove location data
The only time you might want to keep EXIF is for professional photography portfolios where camera settings are part of the value, or when sharing with other photographers who need the technical data.
For maximum privacy, combine EXIF stripping with password protection and expiring links.