Skip to content

Remove EXIF from Photos on Mac

Remove EXIF from photos on Mac with Preview export, sips strip flags, and GetCompress batch metadata removal. Share images without GPS and camera tags.

By Petr Samokhin

You attach three event photos to a public blog post. Readers do not see it, but the JPEG files still carry GPS coordinates, iPhone model, and exact capture time in EXIF tags. Remove EXIF from photos before publish, client send, or ticket upload when location and device details should stay private.

What EXIF data contains

EXIF (Exchangeable Image File Format) embeds metadata in JPEG, HEIC, and some TIFF files from cameras and phones.

Tag typeExample
GPSLatitude and longitude of capture
DeviceCamera or phone model, lens info
Date and timeOriginal capture timestamp
OrientationRotation flag some apps misread
SoftwareExport app name and version

PNG screenshots usually carry less EXIF, but embedded color profiles and chunks may still identify tooling. PDF and video carry separate metadata models; this guide focuses on photo EXIF.

Some social platforms strip EXIF on upload, but email, shared drives, and client portals often deliver the original file unchanged. Do not rely on the destination to redact tags for you.

Stripping metadata is not the same as compressing pixels. You can remove tags without changing visible image quality. Read lossy vs lossless compression when you also need smaller file size via resize or quality.

Why strip metadata before sharing

ScenarioRisk
Public blogHome or office location in GPS tags
Client deliverableUnreleased device or prototype hints in Software tag
Support ticketInternal office geotag on workplace photo
Stock or PR handoffExact capture time conflicts with embargo

Online EXIF removers receive the full photo when you upload. For sensitive shoots, process on your Mac. See are online file compressors safe for what third-party upload exposes.

Pair metadata removal with resize when uploads must fit limits. See how to compress images on Mac for the display-size rule.

Remove EXIF in Preview

Preview flattens many metadata fields on re-export:

  1. Open the photo in Preview.
  2. Choose Tools → Adjust Size… only if you also need smaller dimensions.
  3. Choose File → Export… as JPEG with a quality setting.
  4. Save as a new file; compare Tools → Show Inspector on old vs new when available.

Photos export can strip some tags depending on settings, but Preview export is predictable for one-off JPEG delivery copies.

Keep an originals/ folder with EXIF intact for your archive. Publish from redacted/ or web/ copies only.

Strip with sips in Terminal

sips can delete metadata without re-encoding when you use strip flags:

sips -s format jpeg -s formatOptions 85 --deleteProperty profile --deleteProperty exif input.jpg --out clean.jpg

For HEIC from iPhone:

sips -s format jpeg photo.heic --out photo-clean.jpg

Conversion to a new JPEG often drops GPS and device tags. Verify with Inspector or mdls on the output:

mdls -name kMDItemLatitude -name kMDItemLongitude clean.jpg

Empty results suggest GPS tags no longer surface through Spotlight metadata.

Batch EXIF removal

When a folder of event photos needs the same treatment:

mkdir clean
for f in *.jpg; do
  sips -s format jpeg -s formatOptions 85 --deleteProperty exif "$f" --out "clean/$f"
done

Resize during the same pass when the site also needs smaller bytes:

for f in *.jpg; do sips -Z 1920 -s formatOptions 85 --deleteProperty exif "$f" --out "clean/$f"; done

Write your redaction checklist in the editorial doc: strip EXIF, max width 1920, JPEG quality 85.

Camera RAW files carry separate metadata sidecars. This guide covers exported JPEG and HEIC delivery copies, not DNG or proprietary RAW workflows.

When heroes move to WebP for web, convert after resize from a metadata-stripped JPEG master. See PNG to WebP on Mac for format conversion after dimensions are set.

Using GetCompress

GetCompress processes images locally without upload. Useful when PR packs and blog folders mix HEIC, JPEG, and PNG from different photographers.

  • Drop a folder and export JPEG or WebP copies intended for public use.
  • Combine max width, quality, and metadata-safe export in saved presets.
  • Preview one map-heavy photo before batch to confirm acceptable quality after strip and resize.
  • Batch remove EXIF from photos on Mac alongside compression for WordPress or email handoff.
  • Avoid browser-based strippers that upload full-resolution GPS-tagged originals.

GetCompress does not replace legal review for every compliance regime. It keeps files on disk while you prepare redacted copies. Pair with compress JPG on Mac when byte size and privacy both matter.

Spot-check one exported file in Preview Inspector before you publish the full gallery.

sips strip behavior varies by source format. When GPS tags must disappear but you want to keep color profile data, test one file and inspect output before you batch an entire event folder.

Keep camera originals on a separate volume or read-only archive when legal requires chain-of-custody for the untouched HEIC or JPEG capture.

Buy GetCompress now for local media compression with reusable presets and no media upload.