What metadata is stored in your Mac photos (and how to clean it)
Every photo on your Mac carries hidden metadata. Here's what's in there and how to remove it on macOS.
You take a photo, send it to a friend, and assume the only thing you’ve sent is the picture itself. Actually you’ve sent a small file full of metadata about when, where, and how the photo was taken — and sometimes who took it.
What’s actually in there
A typical JPEG or HEIC photo from a phone or modern camera contains several blocks of metadata:
- EXIF — capture date, GPS coordinates, camera make and model, lens, aperture, shutter speed, ISO, white balance, flash status, sometimes a serial number.
- IPTC — caption, keywords, copyright, creator name (mostly added by editing software).
- XMP — Adobe’s extensible metadata, often duplicates EXIF and IPTC.
- ICC — colour profile.
- Thumbnail — a small embedded preview of the image (sometimes the original image, even if you cropped — a real privacy concern in older tools).
How to view what’s in a photo
Preview’s Inspector. Open the photo, Tools → Show Inspector, click the (i) icon. Tabs cover General, EXIF, GPS, TIFF, IPTC.
Photos app. Select a photo, then Window → Info (or ⌘+I).
exiftool in Terminal. Most detailed:
brew install exiftool
exiftool photo.jpg
That dumps every tag in the file.
What to clean and when
- Sharing publicly (social, blog, public forum): strip everything. GPS in particular.
- Sharing with a known person: GPS is the main concern; the rest is usually fine.
- Archiving your own photos: keep everything — the metadata is genuinely useful for future-you.
- Selling or licensing: add IPTC copyright and creator info instead of removing.
The native way to clean
Preview, GPS only: Tools → Show Inspector → GPS tab → Remove Location Info.
exiftool, everything:
exiftool -all= -overwrite_original photo.jpg
exiftool, GPS only:
exiftool -gps:all= -overwrite_original photo.jpg
The faster way
Melt strips all metadata by default whenever it re-encodes an image. Drag photos in, set the output format (keep it the same to avoid quality loss), confirm “Strip metadata” is on, click Compress. Handles whole folders at once. Download Melt.
Clean metadata in Melt
- Open Melt.
- Drag photos in.
- Confirm "Strip metadata" is enabled.
- Match output format to source.
- Click Compress.
What you lose, what you keep
Stripping metadata loses date/time, camera info, GPS, copyright, and embedded thumbnails. The image pixels are untouched. For most public sharing this is the right call. For personal libraries, it’s not — you’ll wish you had the dates later. The right move is to strip metadata only on the copy you’re sending, and keep your originals as they were.
More Melt tips
-
Receive iPhone photos as JPG via AirDrop (not HEIC)
AirDropping photos from iPhone keeps landing them as HEIC files on your Mac. Here's how to get them as JPG instead.
-
AVIF on Mac — opening and converting AVIF images
AVIF is the next-gen image format that's even smaller than WebP. Here's how to open and convert AVIF files on macOS.
-
How to batch compress a folder of photos on Mac
Compressing 200 photos one at a time is its own form of suffering. Here's how to batch compress images on macOS.
-
What's the best image format for the web (and how to export it on Mac)?
JPEG, PNG, WebP, AVIF, SVG — they each have a job. Here's how to pick the right one for the web and export it from your Mac.