How to Remove EXIF Data from Photos: Complete Guide
— Written by Brendan G., Founder & Developer
Every photo you take with a smartphone or digital camera contains hidden EXIF data — including your precise GPS location, camera settings, device model, and timestamps. This guide explains exactly how to remove EXIF data from photos on every platform, so you can share images without accidentally revealing where you were when you took them.
Need to strip EXIF data right now?
Open Free Metadata Scrubber →Drag and drop your photo. No account needed. EXIF removed instantly.
What is EXIF Data?
EXIF stands for Exchangeable Image File Format. It's a standard for embedding metadata inside image files — primarily JPEG and TIFF. When your camera or smartphone takes a photo, it automatically writes a package of technical information directly into the image file itself. This information doesn't appear when you look at the photo, but it travels with the file everywhere it goes until someone actively removes it.
A typical smartphone photo contains hundreds of EXIF fields. The most privacy-sensitive ones include:
- GPS coordinates — precise latitude and longitude, often accurate to within 3-5 meters
- GPS altitude — how high above sea level you were
- GPS timestamp — exact UTC time the location was recorded
- Device make and model — e.g., "Apple iPhone 16 Pro"
- Software version — iOS or Android version, camera app version
- Date and time taken — precise to the second
- Camera settings — ISO, aperture, shutter speed, focal length, flash status
- Image dimensions — original resolution
- Color space and color profiles
- Thumbnail — an embedded miniature version of the image
The GPS coordinates are usually what matters most from a privacy standpoint. If you photograph your home, your car in your driveway, or your children in your backyard and share those photos via a direct file link, email, or download page, anyone who downloads the file can open it in any EXIF reader and see your home address — usually accurate enough to identify your exact property.
When Should You Remove EXIF Data?
Not every photo needs EXIF stripping — if you're a photographer organizing your portfolio by location, EXIF data is useful to keep. But these scenarios warrant removing it before sharing:
- Photos taken at your home or workplace — GPS reveals the address
- Photos of children — you generally don't want strangers knowing where your children are
- Photos shared publicly online — on blogs, forums, or public file links
- Photos shared with people you don't fully trust — business acquaintances, online contacts
- Journalism and activism — GPS can expose source locations or operational security
- Whistleblowing or sensitive disclosures — device make+model+timestamp can help identify you
- Selling items online — photos of items sold on marketplaces often reveal the seller's home
Note: most major social networks (Facebook, Instagram, Twitter/X) automatically strip EXIF data when you upload photos to their platforms. The risk is when sharing photo files directly — via email, cloud storage links, file sharing services, or direct downloads.
How to Remove EXIF Data on Windows
Windows has a built-in EXIF removal tool built right into File Explorer:
- Right-click the photo file.
- Select Properties.
- Click the Details tab.
- Scroll to the bottom and click "Remove Properties and Personal Information".
- Choose "Remove the following properties from this file".
- Click Select All to select all EXIF fields.
- Click OK.
This modifies the original file in place, removing all selected EXIF fields. You can also choose "Create a copy with all possible properties removed" if you want to preserve the original file with its metadata intact while creating a clean copy for sharing.
For batch removal on Windows: Select multiple photos in File Explorer, right-click any one of them, choose Properties → Details → Remove Properties and Personal Information, and the removal applies to all selected files at once.
How to Remove EXIF Data on Mac
macOS doesn't have as straightforward a built-in EXIF removal tool, but there are several efficient approaches:
Using Preview (built-in, limited):
- Open the photo in Preview.
- Go to Tools → Show Inspector (or press Cmd+I).
- Click the GPS tab to verify GPS data is present.
- Go to File → Export and choose JPEG or PNG.
- Uncheck "Preserve EXIF data" if the option is visible, and save.
Note: Export via Preview doesn't always strip all EXIF fields — it may keep some camera metadata while removing GPS. For complete removal, use one of the methods below.
Using ImageOptim (free, thorough): Download ImageOptim from imageoptim.com (free). Drag your photos onto ImageOptim — it strips all metadata including EXIF as part of its optimization process and overwrites the file with a clean version.
Using ExifTool via Terminal (complete removal):
# Install ExifTool via Homebrew
brew install exiftool
# Remove all EXIF from one photo
exiftool -all= photo.jpg
# Remove all EXIF from all JPEGs in current folder
exiftool -all= *.jpg
# Remove EXIF and keep backup of originals
exiftool -all= -overwrite_original photo.jpg
How to Remove EXIF Data on iPhone
Prevent GPS before taking the photo:
- Go to Settings → Privacy & Security → Location Services.
- Scroll down to Camera and tap it.
- Set location access to "Never" to stop all GPS embedding, or "Ask Next Time" to choose per session.
Remove location from existing photos before sharing:
- Open the photo in the Photos app.
- Tap the information icon (the i button) or swipe up on the photo.
- If location data is present, you'll see a map preview.
- Tap the location label, then tap "Remove Location".
This removes the GPS fields from that specific photo. However, it only removes location — other EXIF fields like device model and timestamp remain. For complete EXIF removal on iPhone before sharing, upload the photo to FileShot's Metadata Scrubber which strips all fields.
When sharing photos from iPhone: iOS's native share sheet has a built-in privacy option. When you tap Share on a photo, then tap Options at the top, you can toggle off "Location" to share without GPS data attached. This only applies to that specific share action — it doesn't modify the photo file itself.
How to Remove EXIF Data on Android
Prevent GPS at the camera level:
- Open your camera app.
- Look in Settings (usually a gear icon or three-dot menu).
- Find "Location tags", "Geotagging", or "GPS" and toggle it off.
Alternatively: Settings → Apps → Camera → Permissions → Location → Deny. This prevents the camera app from accessing GPS entirely.
Remove EXIF from existing photos on Android: Android doesn't have a built-in system-level EXIF remover, but the Google Photos app lets you remove location from shared photos. When sharing a photo through Google Photos, tap the share icon, then tap "More options" → toggle off "Remove location". For complete EXIF removal, use a third-party app like "Exif Eraser" (free, open-source on F-Droid) or upload to FileShot's scrubber.
How to Remove EXIF Data Online (No Software)
For photos where you can't install software, or want a quick browser-based solution, FileShot's Metadata Scrubber removes all EXIF fields including GPS, camera info, and timestamps directly in your browser — the photo isn't uploaded to any server, all processing happens locally via JavaScript.
- Go to fileshot.io/tools/scrubber.
- Drag your photo onto the upload area or click to browse.
- The tool shows you what EXIF fields are present.
- Click Remove All Metadata.
- Download the clean photo with all EXIF stripped.
How to Remove EXIF with ExifTool (Advanced)
ExifTool is the most powerful and comprehensive EXIF manipulation tool available. It's free, open-source, and works on Windows, Mac, and Linux. Download from exiftool.org.
# View all EXIF data in a file
exiftool photo.jpg
# Remove ALL metadata from a file (overwrites original)
exiftool -all= photo.jpg
# Remove only GPS data, keep other EXIF
exiftool -gps:all= photo.jpg
# Remove EXIF from all JPEGs in a folder recursively
exiftool -all= -r /path/to/folder/
# Process without creating backup files (*_original)
exiftool -all= -overwrite_original photo.jpg
# Strip metadata and save as a new file
exiftool -all= -o photo_clean.jpg photo.jpg
Does Removing EXIF Data Affect Photo Quality?
No. EXIF data is stored in a separate metadata layer of the image file. It has no connection to the actual pixel data that makes up the visible image. Removing EXIF data does not change the photo in any visible way — the resolution, colors, sharpness, and quality remain exactly the same. The file size decreases slightly (usually a few kilobytes) because the metadata section is removed, but the image content is completely preserved.
The only exception: some image viewers use embedded EXIF orientation data to rotate photos for display. If you remove EXIF and the photo appears sideways in some apps, it means the rotation was stored in EXIF rather than baked into the pixel data. You can fix this by either keeping the orientation tag while removing everything else (exiftool -all= --orientation photo.jpg), or by rotating and re-saving the photo before removing EXIF.
Verify EXIF Was Successfully Removed
After removing EXIF data, confirm it's gone before sharing:
- Windows: Right-click → Properties → Details tab. GPS fields and camera info should show as empty.
- Mac: Preview → Tools → Show Inspector → EXIF/GPS tabs should show no data.
- Online: Go to pic2map.com or metapicz.com (free EXIF viewers) and upload the photo to verify all metadata has been removed.
- Command line: Run
exiftool photo.jpg— if removal was successful, you'll see only a minimal set of fields or none at all.
Share Photos Privately After Removing EXIF
After stripping EXIF data, share your photos through a privacy-respecting channel. FileShot encrypts uploaded photos client-side with AES-256-GCM before they leave your browser, so the server never has access to the image content. The decryption key lives only in the URL fragment. Combined with EXIF removal, this gives you complete control over what information your photo shares with recipients.
Frequently Asked Questions
How do I remove EXIF data on Windows?
Right-click the photo → Properties → Details tab → "Remove Properties and Personal Information" → Select All → OK.
How do I remove EXIF data on Mac?
Use ImageOptim (free, imageoptim.com) — drag photos onto it and it strips all EXIF. Or via Terminal: exiftool -all= photo.jpg.
Does Instagram strip EXIF data?
Yes, Instagram removes EXIF data when you upload photos to its platform. However, if you share photo files directly (not through Instagram), recipients can see your full EXIF data including GPS.
How do I stop my iPhone from adding GPS to photos?
Settings → Privacy & Security → Location Services → Camera → set to "Never".
Does removing EXIF data reduce photo quality?
No. EXIF is stored separately from pixel data. Removing it doesn't affect the visible image in any way.
Can I remove EXIF data from multiple photos at once?
Yes. On Windows: select all photos, right-click → Properties → Details → Remove Properties. Via ExifTool: exiftool -all= -overwrite_original *.jpg.
Share photos without exposing your location
FileShot encrypts your photos before upload. The server never sees your files. No account required.
Share a Photo Privately →