Remove EXIF from Photos on Mac: 3 Methods
Remove EXIF from photos on Mac with Preview export, sips strip flags, or batch Terminal loops. Share JPEG and HEIC copies without GPS tags.
You attach event photos to a public post. Readers do not see it, but the JPEG files can still carry GPS, phone model, and exact capture time in EXIF. Strip those tags before publish, client send, or ticket upload when location and device details should stay private.
What EXIF contains
EXIF embeds metadata in JPEG, HEIC, and some TIFF files from cameras and phones.
| Tag type | Example |
|---|---|
| GPS | Latitude and longitude |
| Device | Camera or phone model |
| Date and time | Original capture timestamp |
| Orientation | Rotation flag some apps misread |
| Software | Export app name |
Some social platforms strip EXIF on upload. Email, shared drives, and client portals often deliver the original unchanged. Do not rely on the destination. Online EXIF removers receive the full photo on upload; for sensitive shoots, process on your Mac. See are online file compressors safe .
Stripping tags is not the same as compressing pixels. You can remove metadata without changing visible quality. When you also need smaller bytes, see how to compress images on Mac .
Method 1: Remove EXIF in Preview
Best for: One or a few JPEG delivery copies.
- Open the photo in Preview.
- Optionally Tools → Adjust Size… if you also need smaller dimensions.
- File → Export… as JPEG with a quality setting.
- Save a new file in
redacted/orweb/. - Compare Tools → Show Inspector on old vs new when available.
Keep originals/ with EXIF intact for your archive. Publish from redacted copies only.
Limitation: Preview does not give a dedicated “strip all EXIF” checkbox. Export a new file and verify.
Method 2: Strip with sips in Terminal
Best for: Precise strip flags without a GUI.
sips -s format jpeg -s formatOptions 85 --deleteProperty profile --deleteProperty exif input.jpg --out clean.jpgFor HEIC from iPhone, convert to a new JPEG (often drops GPS and device tags):
sips -s format jpeg photo.heic --out photo-clean.jpgVerify Spotlight no longer surfaces GPS:
mdls -name kMDItemLatitude -name kMDItemLongitude clean.jpgEmpty results suggest GPS tags no longer surface through Spotlight metadata.
Limitation: Behavior varies by source format. Test one file before a large event folder.
Method 3: Batch a folder
Best for: Event galleries that need the same treatment.
mkdir clean
for f in *.jpg; do
sips -s format jpeg -s formatOptions 85 --deleteProperty exif "$f" --out "clean/$f"
doneResize in the same pass when the site also needs a max width:
for f in *.jpg; do
sips -Z 1920 -s formatOptions 85 --deleteProperty exif "$f" --out "clean/$f"
doneThis guide covers exported JPEG and HEIC delivery copies, not RAW sidecars.
Limitation: You maintain the loop. Write the checklist in your editorial doc: strip EXIF, max width, quality.
Check the result
Spot-check one exported file in Preview Inspector before you publish the full gallery. Confirm GPS fields are gone and orientation still looks correct.
| Scenario | Risk if you skip strip |
|---|---|
| Public blog | Home or office location in GPS |
| Client deliverable | Device or prototype hints in Software tag |
| Support ticket | Internal office geotag |
When Preview is enough
Preview can finish a single photo when Inspector confirms the tags are gone.
GetCompress does not advertise dedicated EXIF stripping. After tags are removed (or when privacy is less critical than size), use it to resize and compress delivery folders locally. Pair with compress JPG on Mac when byte size and privacy both matter. Keep camera originals on a separate archive when chain-of-custody requires untouched captures.
- How to Compress Images on MacCompress images on Mac with GetCompress, Preview, or sips. Resize JPG and PNG, convert HEIC, and keep sharp UI for email or web.
- Compress JPG on MacCompress JPG on Mac with GetCompress, Preview, or sips. Resize first, then lower quality for email and upload limits without heavy artifacts.
- Online compressor safetyWhat happens when you upload files to online compressors, and what to use on Mac instead with Preview, QuickTime, and GetCompress.
- Remove EXIF from Photos on WindowsRemove EXIF from photos on Windows with Photos or Paint export, ExifTool, or FFmpeg -map_metadata. Share JPEG copies without GPS tags.