What Is EXIF Data? (And Why You Should Care)
Every photo your phone or camera takes stores invisible data alongside the pixels. Camera model, shutter speed, date, GPS coordinates — all embedded directly into the image file. This is EXIF data, and most people have no idea it exists.
EXIF stands for Exchangeable Image File Format. It is a metadata standard that cameras, phones, and image-editing software use to record technical details about a photo at the moment of capture. The format was originally designed to help photographers track their settings. It has since become a privacy concern because the same metadata that records aperture and ISO also records your precise location.
Understanding what EXIF data contains, which files carry it, and when it gets shared is worth a few minutes of your time — whether you are a photographer, a web developer, or someone who posts photos online.
What EXIF Data Contains
A single photo can carry dozens of metadata fields. Here are the main categories:
| Category | Data Stored | Example |
|---|---|---|
| Camera info | Make, model, serial number | Apple iPhone 15 Pro |
| Lens info | Focal length, aperture, lens model | 24mm f/1.78 |
| Exposure | Shutter speed, ISO, aperture, flash | 1/120s, ISO 64, f/1.78 |
| Date/time | Original capture timestamp | 2026-03-15 14:32:07 |
| GPS location | Latitude, longitude, altitude | 40.7128° N, 74.0060° W |
| Image | Dimensions, orientation, color space | 4032×3024, sRGB |
| Software | Editing software used | Adobe Lightroom 7.2 |
| Copyright | Author, copyright notice | © 2026 Jane Doe |
| Thumbnail | Embedded preview image | 160×120 JPEG |
Not every photo includes every field. GPS data, for example, only appears if your device has location services enabled for the camera app. But most smartphones ship with location tagging turned on by default.
The thumbnail field deserves special attention. Some image editors embed a small preview of the original photo. If you crop a photo to remove something sensitive and the editor does not regenerate the thumbnail, the original uncropped image can still be visible in the EXIF thumbnail. This has caused real-world privacy incidents.
View, edit, or strip EXIF data from photos — free, instant, no signup. Your images never leave your browser.
View Metadata →Why EXIF Data Matters
For photographers
EXIF data is a learning tool. When you review a set of landscape shots and notice the sharpest ones were all taken at f/8, ISO 100, that information came from EXIF. It lets you:
- Track which camera settings produce your best results
- Sort and filter thousands of photos by date, location, or camera body
- Prove ownership of an image by showing original capture metadata (camera serial number, timestamp, GPS coordinates) that a screenshot or re-save would not contain
Photo management software like Adobe Lightroom, Capture One, and Apple Photos relies heavily on EXIF to organize libraries. Without it, you would be sorting images by filename alone.
For privacy
GPS coordinates are the headline risk. A photo taken at your home contains your home address. A photo taken at a child's school event contains the school's location. A photo taken at a sensitive meeting confirms you were there at a specific time.
Some social media platforms strip EXIF data on upload — Instagram, Facebook, and Twitter/X all remove it before displaying images publicly. But they still receive and store the data on their servers. And plenty of sharing channels do not strip anything: email attachments, Slack messages, Discord uploads, personal websites, forums, and cloud storage shared links all pass the original file with all metadata intact.
Camera serial numbers add another dimension. They can link photos across accounts and platforms. If you post a photo on one site and a different photo on another under a different name, matching serial numbers can connect the two identities.
For web developers
The EXIF orientation tag (tag 0x0112) tells software how to rotate an image for correct display. A photo taken with the phone held sideways might have pixels stored in landscape but an orientation tag value of 6, meaning "rotate 90° clockwise." Browsers handle this correctly in CSS (image-orientation: from-image is the default since 2020), but server-side image processing pipelines sometimes ignore the tag and produce rotated output.
Stripping EXIF data also reduces file size. The savings are modest — typically 2-30 KB per image — but across hundreds of images on a page-heavy site, it adds up. Pixotter's compression tool strips EXIF metadata as part of its optimization pipeline, so you get both benefits in one step.
EXIF data can also affect image DPI settings. The XResolution and YResolution EXIF tags define the intended print resolution, which matters when images move between web and print workflows.
Which Image Formats Support EXIF?
Not all formats carry EXIF data. Here is the breakdown:
- JPEG/JPG: Full EXIF support. The most common format for EXIF metadata, since most cameras shoot JPEG.
- TIFF: Full EXIF support. TIFF was one of the original formats the EXIF spec was designed for.
- HEIC/HEIF: Full EXIF support. The default photo format on iPhones since iOS 11 stores complete EXIF metadata.
- WebP: EXIF support since WebP 0.5.0 (2016). Google added EXIF container support to handle metadata from converted JPEGs.
- AVIF: EXIF support. The AV1 Image Format includes metadata container support.
- PNG: Does NOT support EXIF. PNG uses its own metadata system — tEXt and iTXt chunks — which can store text key-value pairs but not the structured EXIF format. Converting a JPEG to PNG drops the EXIF data entirely.
- GIF: No EXIF support. GIF predates the EXIF standard and has no metadata container for it.
If you convert photos between formats, check whether the target format preserves EXIF. A JPEG-to-PNG conversion silently drops all EXIF metadata. Depending on your goal, that is either a feature or a problem.
How to View EXIF Data
macOS
Right-click any image file and select Get Info to see basic metadata. For the full EXIF dump, open the image in Preview, then go to Tools → Show Inspector (⌘I) and click the EXIF tab.
Windows
Right-click the image → Properties → Details tab. This shows most EXIF fields including GPS coordinates, camera model, and exposure settings. Click "Remove Properties and Personal Information" at the bottom to strip metadata directly.
Command line
ExifTool by Phil Harvey (Perl Artistic License) is the standard tool for reading and writing EXIF data:
# View all EXIF data
exiftool photo.jpg
# View only GPS data
exiftool -gps:all photo.jpg
# View data in JSON format
exiftool -json photo.jpg
ExifTool supports every image format with metadata and outputs structured data that scripts can parse.
Online tools
- exifdata.com — upload an image and view all metadata fields
- jeffreyfriedl.com/exif — Lightroom plugin author's EXIF viewer
Keep in mind that uploading a photo to an online EXIF viewer sends your file (and its metadata) to a third-party server. If the whole point is privacy, use a local tool instead.
How to Remove EXIF Data
Stripping EXIF before sharing is the simplest way to protect your privacy. The short version:
- Pixotter: Drop your image into Pixotter's compression or conversion tools. EXIF metadata is stripped during processing, and everything runs client-side in your browser — the image never leaves your device.
- ExifTool:
exiftool -all= photo.jpgremoves all metadata in place. - macOS Preview: Export with "Remove Location Information" checked.
- Windows: Properties → Details → "Remove Properties and Personal Information."
For a complete walkthrough covering every platform, bulk removal, selective stripping, and edge cases, read How to Remove EXIF Data from Your Photos. It covers everything from single-file removal to scripting batch operations across thousands of images.
EXIF and Privacy: Which Services Strip It?
Not all platforms treat your metadata the same way.
Platforms that strip EXIF on upload:
- Instagram — strips all EXIF before displaying
- Facebook — strips EXIF from publicly visible images (retains it server-side)
- Twitter/X — strips EXIF on upload
- TikTok — strips EXIF from uploaded images and video stills
Services that preserve EXIF:
- Email attachments (Gmail, Outlook, ProtonMail) — the file is sent as-is
- Slack — preserves original file metadata
- Discord — preserves EXIF on uploaded images
- Personal websites and blogs — your web server serves the original file
- Google Drive shared files — the original file with all metadata
- Flickr — preserves EXIF by default (optional privacy setting to hide it, but the data remains in the file)
- iCloud shared albums — preserves location data unless you disable "Include Location" when sharing
The safest approach: strip EXIF before sharing anywhere you are not certain about. The cost is zero (metadata removal is instant), and there is no visual quality loss since EXIF data is separate from pixel data.
Frequently Asked Questions
Does screenshotting remove EXIF data?
Yes. A screenshot creates a new image with its own metadata (the screenshot timestamp and your device info). The original photo's EXIF data — GPS coordinates, camera settings, original timestamp — is not carried over. Screenshots are an effective but lossy way to strip metadata, since you also lose the original resolution and compression quality.
Can EXIF data be faked?
Yes. EXIF data is just structured bytes in a file — anyone with ExifTool or a hex editor can modify, add, or remove any field. You can set GPS coordinates to anywhere, change the camera model, or backdate timestamps. This is why EXIF data alone is not strong evidence of provenance. The newer C2PA (Coalition for Content Provenance and Authenticity) standard uses cryptographic signatures to address this, but adoption is still limited in 2026.
Does WhatsApp strip EXIF data?
Yes. WhatsApp strips EXIF metadata from images sent as photos (the default). However, if you send an image as a "document" (by selecting the document attachment option instead of the photo option), WhatsApp sends the original file with all metadata intact.
How much file size does EXIF data add?
Typically 2-30 KB. A basic EXIF block without a thumbnail is around 2-5 KB. With an embedded thumbnail (common on photos from dedicated cameras), it can reach 20-30 KB. GPS data adds roughly 200 bytes. For a 3 MB photo, EXIF is less than 1% of the file size. For small web-optimized images under 50 KB, the relative overhead is more significant.
Is EXIF data legally admissible as evidence?
It depends on the jurisdiction and context. Courts in the US and EU have accepted EXIF data as supporting evidence — for example, GPS coordinates and timestamps to place someone at a location. However, because EXIF data can be modified (see above), it is rarely treated as conclusive on its own. It typically corroborates other evidence rather than standing alone. Digital forensics experts can analyze whether EXIF data has been tampered with by checking internal consistency and file structure.
Do all cameras write GPS data by default?
Most smartphones enable location tagging by default. Dedicated cameras (DSLRs, mirrorless) typically do not have built-in GPS — they only record location if you pair them with a phone via Bluetooth or use an external GPS module. Check your phone's camera settings: on iOS, go to Settings → Privacy → Location Services → Camera. On Android, open the Camera app → Settings → look for "Location tags" or "Store location."
View, edit, or strip EXIF data from photos — free, instant, no signup. Your images never leave your browser.
View Metadata →