← All articles

How to Remove EXIF Data from Photos (Privacy Guide)

Every photo you take carries hidden metadata. Before you share that image online, you should know what's embedded — and how to remove EXIF data before it reaches anyone else.

EXIF data is metadata that your camera or phone writes into every photo file. The default settings on most devices include your precise GPS coordinates. That café photo you posted? It likely contains the exact latitude and longitude of where you were sitting. Strip the EXIF data before sharing, and that information stays yours.

What Is EXIF Data? (And Why Remove It?)

EXIF stands for Exchangeable Image File Format. It's a standard for storing metadata inside image files — JPEG, TIFF, and raw formats all support it. PNG files use a different metadata system (XMP/iTXt chunks), but the privacy risks are similar.

A typical photo contains fields like:

The GPS field is the most obvious risk. Post a photo taken at your home and you've published your address. Post one from a child's school event and you've published the school's location. But GPS isn't the only concern — camera serial numbers can link photos across accounts, and timestamps confirm your location at a specific time even without coordinates.

Journalists, activists, whistleblowers, and abuse survivors face serious risks from EXIF data. For everyone else, it's a privacy hygiene issue. Most social platforms (Instagram, Facebook, Twitter/X) strip EXIF data server-side before displaying images — but they keep it. You've handed your metadata to the platform even if their users can't see it.

How to Remove EXIF Data with Pixotter

The fastest way to strip EXIF data from any photo is Pixotter's metadata tool. Drop your image, and Pixotter removes all EXIF, XMP, and IPTC metadata before returning the cleaned file.

The key difference from upload-based services: Pixotter processes everything in your browser using WebAssembly. Your photo never leaves your device. There's no server receiving your files, no logs of what you uploaded, no retention policy to worry about. The processing happens locally — as private as running a desktop app.

You can also chain operations. Drop an image into Pixotter, strip the metadata, and compress it in the same pipeline — one step instead of two separate tools.

Steps:

  1. Go to pixotter.com/metadata.
  2. Drop your photo (JPEG, PNG, WebP, or AVIF).
  3. Pixotter strips all metadata fields.
  4. Download the cleaned file.

Works on desktop and mobile browsers. No install, no account, no upload.

How to Remove EXIF Data on Windows

Windows has a built-in EXIF remover that most people overlook.

  1. Right-click the image file in File Explorer.
  2. Select Properties.
  3. Click the Details tab.
  4. At the bottom, click "Remove Properties and Personal Information".
  5. Choose either "Create a copy with all possible properties removed" or selectively remove specific fields.
  6. Click OK.

The "create a copy" option is safer — it leaves your original intact and produces a stripped version. The selective removal approach lets you keep useful fields (like camera model) while removing GPS and timestamps.

Limitation: Windows strips many fields but doesn't guarantee complete removal of all metadata. It also only works on files stored locally, and you need to process files one at a time through the GUI. For bulk stripping, ExifTool is the right tool — see below for CLI instructions.

How to Remove EXIF Data on Mac

Option 1: Preview export trick

Preview's export function strips most EXIF metadata by default:

  1. Open the image in Preview.
  2. Go to File > Export.
  3. Choose JPEG or PNG as the format.
  4. Click Save.

This removes GPS, camera settings, and most identifying fields. It doesn't guarantee removal of all metadata — some fields may survive the export. For guaranteed clean output, use ExifTool or Pixotter.

Option 2: ExifTool CLI (v12.x)

ExifTool is the gold standard for EXIF manipulation. Version 12.x is the current stable release.

Install via Homebrew:

brew install exiftool

Strip all metadata from a single file:

exiftool -all= photo.jpg

Strip metadata without keeping the backup file:

exiftool -all= -overwrite_original photo.jpg

Batch strip an entire directory:

exiftool -all= -overwrite_original /path/to/photos/

ExifTool v12.x supports JPEG, TIFF, PNG, WebP, HEIC, and raw formats. Nothing survives an -all= flag.

How to Remove EXIF Data on iPhone and Android

Preventing GPS Tagging at the Source (Recommended)

The cleanest approach is to stop embedding GPS data in the first place.

iPhone

  1. Go to Settings > Privacy & Security > Location Services.
  2. Scroll down to Camera.
  3. Set to Never to prevent any location data in photos.

Android (Varies by Manufacturer)

  1. Open the Camera app.
  2. Go to Settings (gear icon).
  3. Find "Location tags," "GPS tag," or "Save location" — the label varies by device.
  4. Toggle it off.

This prevents new photos from containing GPS data. It doesn't affect photos already taken.

Stripping Metadata from Existing Photos

For photos already on your device, native options are limited.

iPhone

There's no built-in EXIF remover. Your best options:

Android

Similar situation — no native metadata editor. Pixotter in a mobile browser is the most private option since nothing leaves your device.

What EXIF Data Gets Removed?

Field Example Value Privacy Risk
GPS Latitude/Longitude 51.5074° N, 0.1278° W High
GPS Altitude 45m above sea level Medium
GPS Timestamp 2026-03-18 14:32:07 UTC High
Camera Serial Number 083024001234 High
Camera Make/Model Apple iPhone 15 Pro Medium
Date/Time Original 2026-03-18 14:32:07 Medium
Software iOS 18.3.1 Low
Lens Model iPhone 15 Pro back triple camera Low
ISO Speed 100 Low
Aperture (F-Number) f/1.8 Low
Shutter Speed 1/1000 sec Low
Flash Flash did not fire Low
Color Space sRGB Low
Thumbnail Image Embedded preview Medium

The embedded thumbnail is worth flagging: some strippers remove the main image metadata but leave the thumbnail, which may contain its own EXIF data. Pixotter and ExifTool both handle thumbnails. The Windows Properties dialog does not always strip thumbnail EXIF.

FAQ

Does removing EXIF data affect image quality?

No. EXIF data is metadata stored alongside the image data — it has nothing to do with the pixels. Stripping it reduces file size slightly (typically 5-50KB depending on how much metadata was embedded), but the visual quality is identical.

Can websites see my EXIF data when I upload photos?

Yes, if you upload the original file. The server receives the full file including all embedded metadata. Social platforms like Instagram, Facebook, and LinkedIn strip EXIF before displaying images publicly, but they retain the data internally. If privacy matters, strip before uploading — don't rely on the platform to protect you.

Does sharing photos via iMessage or WhatsApp strip EXIF data?

It depends on the platform and settings. WhatsApp compresses images when sent, which typically strips metadata as a side effect. iMessage sends the original file by default, preserving EXIF data. Signal strips metadata before sending. For sensitive photos, don't rely on the messaging app — strip manually first.

Is EXIF data removed from PNG files the same way?

PNG files don't use the EXIF standard — they use text chunks (tEXt, iTXt) and the XMP standard for metadata. The privacy risks are similar. Pixotter and ExifTool both handle PNG metadata. The Windows Properties dialog and Mac Preview export have inconsistent behavior with PNG metadata. BMP files are one of the few formats that don't support EXIF at all.

Will removing EXIF data break anything?

Unlikely for normal use cases. Some photo editing software uses EXIF orientation data to display images correctly — if you strip orientation, the image may appear rotated in some apps. ExifTool lets you selectively keep specific fields with -all= -TagsFromFile @ -Orientation if needed.

Can EXIF data be restored after removal?

No. Once stripped, it's gone. There's no undo from the original file's perspective (unless you kept a backup). This is why ExifTool creates backup files by default (the _original extension) — so you can recover if needed. Pixotter always works on a copy, leaving your original untouched.