How to Export iPhone Photo Metadata to Excel (2026 Guide)
A practical 2026 guide to exporting iPhone photo EXIF metadata — GPS, timestamps, and camera settings — to Excel or CSV using manual, CLI, and iPhone workflows.
If you’ve ever needed the GPS coordinates, timestamp, or camera settings from an iPhone photo — and wanted them in a spreadsheet rather than a screenshot — you’ve probably discovered that iOS makes this surprisingly hard. The Photos app shows you the data on screen, but there’s no built-in “export to Excel” button. This guide walks through the three practical methods to get iPhone photo metadata into an Excel (.xlsx) file in 2026, and recommends one for batch workflows.
Short answer: To export iPhone photo EXIF metadata to a spreadsheet, you have three options. Method 1: inspect and transcribe values from Photos — reasonable for a very small set. Method 2: make the files available to a Mac and run ExifTool — powerful and scriptable. Method 3: use an iPhone app such as Photo2XL to preview a selection and export XLSX or CSV on-device. The best choice depends on batch size, output requirements, and whether you prefer a GUI or command line.
Why isn’t this built into iOS already?
Apple shows EXIF data inside the Photos app — tap a photo, swipe up, and you see capture date, camera model, file format, and (if the photo has it) a small map with the GPS coordinates. iOS 15 added an “Adjust” option for date and location. But the Photos app deliberately does not expose a way to export that data as structured text. Apple’s design assumption is that metadata is informational, not something users transfer to other applications.
This is fine if you only need to know when one photo was taken. It’s a problem if you’re an attorney with 200 scene photos, an adjuster with a multi-property damage claim, or a construction PM producing a weekly progress report. You need a list, sortable and filterable.
Method 1: Manual transcription from the Photos app
This is the path of least resistance for one or two photos.
- Open the Photos app and select a photo.
- Swipe up or tap the info button (ⓘ).
- Read the timestamp, location, camera, file size, dimensions, etc.
- Type those values into a row of an Excel or Google Sheets file.
- Repeat for every photo.
This works but scales poorly. Repeated transcription also creates opportunities to copy a timestamp, filename, or coordinate into the wrong row. Review requirements still apply whether values are copied manually or exported by software.
Method 2: AirDrop to Mac, then exiftool
If you have a Mac and don’t mind Terminal, exiftool is a mature, broad metadata utility. One possible workflow is:
- Select photos in the Photos app and AirDrop them to your Mac (or use Image Capture).
- Install
exiftool:brew install exiftool - Run a CSV-producing command in the photo folder:
exiftool -csv -DateTimeOriginal -GPSLatitude -GPSLongitude \
-GPSAltitude -Make -Model -ISO -FNumber -ExposureTime \
-FocalLength -ImageWidth -ImageHeight *.heic *.jpg > metadata.csv
- Open
metadata.csvin Excel, save as.xlsx.
This is technically excellent and free. The downsides:
- It requires getting photos off the iPhone first. For a thousand photos or HEIC files at full resolution, that’s a meaningful copy step.
- It assumes Mac access and CLI comfort.
- iCloud-optimized source resources may need to be downloaded before the computer workflow can inspect them.
- For a workflow you do weekly, the friction adds up.
exiftool is a great tool. We use it ourselves when debugging EXIF questions. But it’s not the right shape for a busy professional who needs the spreadsheet today, on the phone where the photos already live.
Method 3: On-iPhone batch export
The third method skips the export-to-Mac step entirely. A dedicated iOS app reads the iPhone Photos library directly, extracts EXIF fields you select, and writes a standard .xlsx file you can share via the iOS share sheet.
Photo2XL is our app for exactly this. The workflow:
- Pick last 30 days, an album, or a manual selection.
- Start from a workflow template or choose from up to 40 metadata fields, set their order, and add project columns if needed.
- Review the preview, missing values, output format, and package options.
- Create XLSX or CSV on-device, then share it through iOS. Optionally package selected photo files or supported clean copies with a SHA-256 manifest.
A few things matter about this approach:
- On-device processing. Photo2XL does not upload photos or spreadsheet data to its servers. Your chosen share destination has separate terms.
- iCloud-aware. If required source data is stored only in iCloud Photos, iOS may download it before export.
- Two spreadsheet formats. Choose
.xlsxfor a formatted workbook or.csvfor portable data exchange. - No subscription. The free download includes one successful sample export of up to 3 photos; Pro is a one-time lifetime purchase.
For people who need a repeatable spreadsheet handoff directly from the device, Method 3 removes the separate file-transfer and command-line steps.
Which fields should you include in the Excel?
This depends on the use case. A practical default set that handles most workflows:
| Field | Why include it |
|---|---|
| Filename | A practical row-to-photo reference; names can change |
| Date Taken | The single most-cited field |
| Time Taken | Time-of-day matters for many workflows |
| GPS Latitude / Longitude | When location is relevant (court, claims, inspections) |
| Altitude | Useful for multi-story buildings and large sites |
| Camera Model | Reports the model string when present; it does not identify a unique device |
| File Size | Helps compare files; it does not prove originality |
If you’re a photographer delivering shoot metadata, swap GPS for ISO, Aperture, Shutter Speed, Focal Length, and Lens Model. For inspection logs, Filename + Date + Time + GPS is usually enough.
What about photos taken on Android or a DSLR?
You can absolutely export EXIF from photos that didn’t originate on the iPhone. The only requirement is that the photo is in the iOS Photos library. Common ways to get there:
- AirDrop from another iPhone or Mac
- Import via Google Photos sync, OneDrive, or Dropbox
- Plug in a camera and use the Photos import workflow
- Email yourself the photos and save to library
Once a photo is in the Photos library, Photo2XL can request metadata that iOS exposes. Transfer, import, or editing workflows may change or omit fields, so check the preview rather than assuming every original value is preserved.
What about HEIC, RAW, and edited photos?
HEIC, JPEG, and RAW-family resources can carry metadata, but tag availability and extraction behavior vary by source and format. Check the preview and final output rather than assuming parity.
Edited photos are more nuanced. Apple Photos lets users revert supported visual edits, and it separately lets users adjust stored date, time, and location. Third-party editors and sharing paths can create resources with different metadata. Inspect the selected output; do not assume a displayed value came from an untouched original file.
A note on iCloud
Apple says that with Optimize iPhone Storage enabled, full-resolution photos and videos are stored in iCloud and space-saving copies may be kept on the device. Source data can therefore require a network download.
Photo2XL allows iOS to retrieve required iCloud-hosted source data during export and reports progress or failure. Network conditions, file formats, selected fields, and package options affect completion time. A successful download cannot recreate a field that was never present or was removed earlier.
Summary
For one photo: read the info in the Photos app and copy by hand.
For a Mac-based technical workflow: exiftool is flexible and scriptable.
For a repeatable spreadsheet workflow on iPhone: a dedicated exporter can be the right shape. Photo2XL includes one sample export of up to 3 photos, followed by an optional one-time lifetime Pro purchase.
If you have a specific workflow we should write about, email us at [email protected].