EXIF Viewer: How to See What Your Photos Actually Reveal (2026 Guide)

By Hieu Dinh

EXIF Viewer: How to See What Your Photos Actually Reveal (2026 Guide)

Every JPG, HEIC, RAW, and TIFF you save carries an invisible passenger: a metadata block called EXIF (Exchangeable Image File Format) that records the technical fingerprint of the photo. Camera make and model, lens, ISO, shutter speed, aperture, the exact timestamp down to the second, and — if your camera has GPS — the precise coordinates where the picture was taken.

An EXIF viewer is the tool that lets you read this hidden data. Some people want it for craft (learning what camera settings produced a great photo). Some want it for forensics (verifying when and where a photo was taken). Some want it for privacy (knowing what is leaking when they post a photo online). This guide covers the best EXIF viewer tools for each use case in 2026.

What an EXIF viewer actually shows

A typical EXIF block on a phone photo includes:

FieldExampleWhy it matters
Make / ModelApple iPhone 16 ProReveals device — useful for craft, dangerous for anonymity
LensiPhone 16 Pro back triple camera 6.86mm f/1.78Same
Date / Time2026:04:18 14:32:11Exact capture time, often within a second
GPS Coordinates37.7749, -122.4194Pinpoints where the photo was taken
GPS Altitude28.4 mVertical position
Shutter Speed1/120sExposure parameter
Aperturef/1.8Depth of field setting
ISO100Sensor sensitivity
Focal Length6.86mm (28mm equivalent)Zoom level
White BalanceAutoColor temperature handling
FlashOffWhether flash fired
SoftwarePhotos 5.0, Lightroom 14.2Editing chain
Color ProfileDisplay P3Color space
Orientation1 (Top-left)How to rotate on display

Beyond standard EXIF, photos often carry IPTC (caption, keywords, copyright) and XMP (Adobe edits, ratings, color labels) blocks. A good EXIF viewer reads all three.

For deeper coverage of metadata types and how it differs from a metadata extractor used for forensics, see our extract metadata from image guide.

Why use an EXIF viewer?

Three common reasons:

  1. Photography learning — Scroll a great photo, see ISO 100, f/8, 1/250s on a 24-70mm lens. Now you know the recipe.
  2. Forensic verification — Confirm a photo's claimed timestamp and location match its EXIF. Useful for journalism, insurance claims, and online dating.
  3. Privacy auditing — Before you post, see what is leaking. Apartment building name in IPTC keywords, GPS pinpointing your home, software trail revealing your editing tools.

If your goal is to strip metadata rather than view it, jump to our remove metadata from photo and remove EXIF data guides.

Method 1: Online EXIF viewers (zero install)

The fastest way to inspect a single photo. Drop it on a website, see all metadata.

Best free EXIF viewer websites in 2026:

  • Compresto Image Metadata Extractor and Image Metadata Viewer — Browser-based, no upload. Drag any JPG, PNG, HEIC, or RAW file and see EXIF, IPTC, XMP, and GPS coordinates with an interactive map. Files never leave your machine.
  • Jimpl — Clean UI, supports JPG, HEIC, RAW. Files are deleted after 24 hours.
  • ExifMeta — Shows EXIF, GPS, plus camera and lens summary blocks.
  • Metadata2Go — Reads images, PDFs, audio, video, e-books.
  • exif.tools — Developer-friendly. Shows EXIF, XMP, IPTC, ICC, GPS, plus file hashes and raw JSON export.
  • PixelPeeper — Includes Lightroom edit history extraction.

Privacy warning on online EXIF viewers: if the site uploads your photo to a server (most do, except those that explicitly say "in-browser only"), your photo and its metadata sit on their disks for some retention window. Fine for vacation snaps, not fine for anything sensitive. The Compresto image metadata extractor is the safest option — it processes files locally in your browser via WebAssembly.

Method 2: macOS — Preview, Photos, and Compresto

Built-in: Preview.app

Open a photo in Preview → Tools menu → Show Inspector → click the i with circles tab. You get a basic EXIF panel (camera, exposure, GPS) with a small inline map.

Limitations: Preview shows only common EXIF. It misses XMP edit history, full IPTC keywords, and lens-specific data on some bodies. It also cannot batch-export metadata.

Built-in: Photos.app

Select a photo → File menu → Get Info (Cmd+I). Newer macOS versions show camera, lens, exposure, and a GPS map. You can edit the date/time and remove location data here too.

Compresto image metadata extractor

Drop a photo into the Compresto image metadata extractor. Native rendering, in-browser, no upload. Supports JPG, PNG, HEIC, RAW (CR2, NEF, ARW, DNG). Shows EXIF, IPTC, XMP, GPS with map, plus a clean JSON export for scripting.

Command line: ExifTool

The gold standard. ExifTool by Phil Harvey reads every metadata format on every image type. Installable via Homebrew:

brew install exiftool
exiftool photo.jpg

Output is verbose but complete. Pipe to a file, grep specific fields, or use -json for machine-readable output:

exiftool -json photo.jpg > metadata.json

ExifTool is also what most other EXIF viewer tools wrap — it is the engine, the website is just a UI.

Method 3: Windows — File Explorer and dedicated apps

Built-in: File Explorer

Right-click a photo → Properties → Details tab. Shows camera, exposure, dimensions, and GPS coordinates if present. Same panel lets you remove specific fields with Remove Properties and Personal Information.

Free third-party options:

  • ExifTool GUI — A friendly Windows wrapper around the command-line ExifTool. Batch-friendly, exports to CSV.
  • Photo Mechanic Plus (paid, $229) — Pro-grade for photographers managing thousands of files.
  • IrfanView — Long-running freeware image viewer with built-in EXIF panel.
  • XnView MP — Free for personal use, batch metadata operations.

For Windows users who specifically want to strip EXIF after viewing, our remove EXIF data guide covers built-in and third-party tools.

Method 4: iPhone — built-in and shortcuts

iOS 15 added a basic EXIF viewer to the Photos app. Open a photo → swipe up or tap the i info button. You see camera, lens, exposure, file size, and GPS with map.

For more detail (XMP edits, full IPTC), use a dedicated EXIF viewer app:

  • Exif Metadata by Solid State Industries — free, clean, supports all common formats.
  • Metapho — paid ($3.99) but adds metadata editing and removal.
  • Photo Investigator — free with paid pro features.

If you take photos on iPhone and want to remove location data before sharing, iOS now offers a system-level option. Tap Share → tap Options at the top → toggle Location off. The recipient gets the photo without GPS coordinates. Detailed in our remove metadata from photo guide.

Method 5: Android — Google Photos and apps

Android's built-in EXIF viewer is in Google Photos: tap a photo → swipe up. Camera, lens, exposure, GPS map.

For deeper inspection: Photo Exif Editor (free), Exif Eraser (free, removal-focused), or Open Camera (free, photographer-focused with EXIF view and edit).

Reading GPS coordinates correctly

GPS in EXIF is stored as degrees / minutes / seconds (DMS) with a hemisphere reference. A coordinate like 37° 46' 29.64" N, 122° 25' 9.84" W is the same as decimal 37.7749, -122.4194 — convert by:

decimal = degrees + minutes/60 + seconds/3600

Negate for South (latitude) or West (longitude). Most modern EXIF viewer tools display decimal directly and link to OpenStreetMap or Google Maps.

What GPS coordinates can reveal:

  • Your home address (most photos taken indoors are tagged with home GPS)
  • Your workplace (lunch photos)
  • Your child's school (drop-off/pickup photos)
  • A regular pattern (gym, café, friend's apartment) once you have many tagged photos from one account

This is the privacy attack surface. Even if you delete a single photo's location, an attacker who has scraped 100 of your photos likely has your home pinpointed within a 10-meter circle. Strip GPS from anything you post publicly — see remove EXIF data for the how.

What an EXIF viewer cannot show you

  • Authenticity — EXIF can be edited. A timestamp saying "2026:04:18" is what the camera wrote, but anyone with exiftool -DateTimeOriginal="2024:01:01 00:00:00" can rewrite it. For photo authenticity verification, look at C2PA Content Credentials, error level analysis, and reverse image search — not EXIF alone.
  • Where the photo was uploaded from — EXIF GPS is where the camera was, not where the upload happened.
  • AI generation — Most generated images strip EXIF entirely or carry obviously inconsistent fields (shutter speed 1/8000s on a sunset shot at ISO 25600). A real EXIF viewer makes anomalies visible, but absence of EXIF is itself a signal.

Batch EXIF viewing for photographers

If you manage thousands of photos and want to filter or sort by EXIF — e.g., "show me everything I shot at f/1.4 in 2025" — the right tool is a digital asset manager (DAM):

  • Adobe Lightroom Classic — full EXIF/XMP database, smart collections by metadata.
  • Capture One — same, with stronger color tools.
  • digiKam — free, open-source, runs on every OS.
  • Photo Mechanic — fastest at culling large shoots.

A simple EXIF viewer is for one photo at a time. A DAM is for tens of thousands.

FAQ

What is an EXIF viewer? A tool that reads the metadata block embedded in image files — camera, lens, GPS, timestamp, edit history — and displays it in a human-readable format. Most EXIF viewers also handle adjacent metadata standards like IPTC and XMP.

Is using an online EXIF viewer safe? Depends on the site. Browser-only tools (Compresto, Squoosh, ImageKit) process files locally — your image never leaves your machine. Server-side tools upload your photo to a remote server, where it sits for some retention window before deletion. Prefer browser-only for sensitive content.

Can I view EXIF on a screenshot? Sometimes. Native screenshots from macOS and iOS carry minimal EXIF (no GPS, no camera, just timestamp and creator). Photos imported into a screenshot via copy-paste keep their original EXIF. A screenshot of a screenshot does not.

Why does my photo have no EXIF data? Three reasons: (1) the photo was uploaded through a service that strips it (Twitter, WhatsApp, Instagram all strip EXIF on upload), (2) the photo was AI-generated, (3) someone explicitly stripped it with a tool — possibly for privacy, possibly to hide something.

Can I edit EXIF data? Yes. ExifTool, Metapho (iOS), Photo Exif Editor (Android), and Lightroom all support EXIF editing. Useful for fixing wrong timestamps, adding copyright, or correcting GPS. Be aware that editing EXIF does not change the pixel data — it only changes the metadata block.

What is the difference between EXIF, IPTC, and XMP?

  • EXIF — Camera/device-generated technical data (capture settings, GPS, timestamp).
  • IPTC — Editorial metadata (caption, keywords, byline, copyright, location text). Standard for photojournalism.
  • XMP — Adobe's extensible XML format. Stores edit history (Lightroom adjustments), ratings, color labels, custom fields. A good EXIF viewer reads all three.

Can I view EXIF data on RAW files? Yes — RAW formats (CR2, CR3, NEF, ARW, RAF, DNG) store EXIF in the same way as JPG. ExifTool, the Compresto image metadata extractor, and most pro photography tools read RAW EXIF natively.

TL;DR

  • Quick web check: Compresto Image Metadata Extractor — in-browser, no upload, no privacy worries.
  • Mac: Preview's Inspector for basics, Compresto for full reads, ExifTool CLI for everything.
  • Windows: File Explorer Properties → Details, ExifTool GUI for power use.
  • iPhone / Android: Built-in Photos app's info panel, Metapho/Exif Eraser for more.
  • Photographers: Lightroom Classic or Capture One for searching EXIF across thousands of photos.
  • Privacy audit: view EXIF before posting, strip GPS, then re-check before upload.

An EXIF viewer is one of those tools you do not need until you suddenly really need it. Bookmark a good one — and if you find GPS coordinates pinpointing your home in photos you've already shared, the next step is to remove EXIF data before posting next time.

Ready to compress your files? Join thousands of creators using Compresto ⚡