# How to Remove EXIF Metadata from Photos Before Sharing Online

> Every photo you take with a smartphone contains EXIF metadata: the camera make and model, the date and time, and — if you have location services on — the GPS coordinates of where you took it. Before sharing a photo publicly, strip the EXIF. Here is the 3-step workflow: check the metadata, remove it, verify the result. The whole thing takes 2 minutes per photo.

URL: https://uttir.com/blog/how-to-remove-exif-metadata-from-photos-before-sharing
Published: 2026-08-20
Author: Uttir
Reading time: 8 min
Tags: privacy, photos, metadata, how-to, security

## Quick answer

3-step workflow: (1) open the [EXIF Metadata Viewer](/exif-metadata-viewer) on this site, drop in the photo, see what is in the metadata. (2) Remove the EXIF using the viewer's "remove EXIF" option, or use a tool like ImageMagick, exiftool, or the macOS Preview app. (3) Re-open the cleaned photo in the viewer, confirm the metadata is gone. The whole thing takes 2 minutes per photo. The metadata you most want to remove: GPS coordinates, camera serial number, software version, and date/time (which can confirm or rule out alibis).

Every photo you take with a smartphone contains EXIF metadata. EXIF (Exchangeable Image File Format) is a standard for storing technical metadata in image files. The metadata includes the camera make and model, the lens, the focal length, the aperture, the shutter speed, the ISO, the date and time the photo was taken, and — if you have location services enabled on your phone — the GPS coordinates of where you took it.

Before sharing a photo publicly — on social media, on a forum, in a dating app, on a public website, in a marketplace listing — it is worth stripping the EXIF metadata. The most sensitive fields are the GPS coordinates (they tell anyone where you were) and the date/time (which can be used to confirm or rule out an alibi). Other fields (camera model, lens, settings) are not sensitive, but they are also not necessary for the recipient to see the photo.

This is the 3-step workflow to check, remove, and verify EXIF metadata. The whole thing takes 2 minutes per photo.

## Step 1: Check what is in the metadata (30 seconds)

Open the [EXIF Metadata Viewer](/exif-metadata-viewer) on this site. Drop in the photo (or click to upload). The viewer shows all the EXIF metadata in a readable format.

The fields you most want to look for:

- **GPSLatitude, GPSLongitude, GPSAltitude**: the GPS coordinates. These reveal where you took the photo, accurate to a few meters.

- **DateTime, DateTimeOriginal, DateTimeDigitized**: the date and time. These confirm when you took the photo.

- **Make, Model**: the camera or phone. Useful for fingerprinting ("this person has an iPhone 15 Pro").

- **SerialNumber**: the camera's serial number. Some cameras include this; some don't. If present, it uniquely identifies the device.

- **Software, FirmwareVersion**: the software version. Useful for fingerprinting but usually not sensitive.

- **LensModel, LensMake, LensSerialNumber**: the lens. Some lenses have unique serial numbers that can identify a specific photographer.

- **OwnerName, Artist, Copyright**: the owner's name. Some cameras let you set this; if present, it's your name (or whatever you typed in).

For most people, the GPS coordinates are the most sensitive field. If you have ever shared a photo of your home, your office, your favorite coffee shop, your kid's school, or a vacation spot, the GPS coordinates are in the metadata. Anyone who downloads the photo and runs it through an EXIF viewer can see the exact spot.

## Step 2: Remove the metadata (60 seconds)

There are 5 common ways to strip EXIF metadata, in increasing order of effort:

### Method 1: The EXIF Metadata Viewer's built-in strip option (easiest)

The [EXIF Metadata Viewer](/exif-metadata-viewer) on this site has a "remove EXIF" button. After viewing the metadata, click the button, and the viewer produces a new image with the metadata stripped. The original photo is not modified; the cleaned photo is a download. This is the fastest method for one-off cleanups.

### Method 2: Resize or re-encode the photo

When you resize or re-encode a photo, most tools strip the original EXIF and write a new file with only the new image data. The [Image Compressor](/image-compressor), [Image Resizer](/image-resizer), and [Image Cropper](/image-cropper) on this site all do this — the output image has no original EXIF. The cost is that the image is re-encoded (usually lossless or high-quality, but the file may be slightly different).

### Method 3: macOS Preview (built-in, no install)

On macOS, open the photo in Preview. File > Export. In the export dialog, there is no explicit EXIF-strip option, but if you choose a different format (e.g., export a JPEG as PNG, or vice versa), the EXIF is dropped. If you re-export as the same format, the EXIF is usually preserved. The trick is to round-trip through a different format.

### Method 4: Windows Photos app (built-in, no install)

On Windows 10/11, open the photo in the Photos app. Click the three dots > Save a copy. The saved copy has the EXIF stripped. This is the easiest method on Windows.

### Method 5: exiftool (command line, batch-friendly)

For batch processing (cleaning metadata from 100 photos at once), exiftool is the standard tool. Install via Homebrew (macOS) or apt (Linux), or download from the official site (Windows).

```
# Remove ALL metadata from a single file
exiftool -all= photo.jpg

# Remove only GPS metadata (keep camera info)
exiftool -gps:all= photo.jpg

# Process an entire folder, output to a new folder
exiftool -all= -o cleaned/ *.jpg

# Verify the metadata is gone
exiftool photo.jpg
```

The `-all=` flag removes all metadata. The `-gps:all=` flag removes only the GPS group. The `-o` flag specifies the output directory. The last command (without any flags) shows the remaining metadata, so you can verify the cleaning worked.

## Step 3: Verify the metadata is gone (30 seconds)

After cleaning, drop the cleaned photo back into the [EXIF Metadata Viewer](/exif-metadata-viewer) and confirm the metadata is gone. The viewer should show "no EXIF metadata found" or a similar message.

Verification is important because cleaning tools can fail silently. The image might look the same, but the EXIF could still be there if the cleaning tool had a bug, didn't support the file format, or only cleaned some of the fields. Verifying with a different tool (the viewer) is the way to be sure.

## What about social media platforms?

Most major platforms (Facebook, Instagram, Twitter/X, Reddit, Discord) strip EXIF metadata when you upload a photo. The original metadata is replaced with the platform's own metadata (upload time, your username, etc.). This is true for the photo as displayed on the platform.

HOWEVER, the ORIGINAL photo (the file you uploaded) is preserved in some cases (e.g., on Discord, if you click "Open original"). And if you share the photo as a file attachment (not as an inline image), the original metadata is preserved.

The safe assumption is: if you want to share a photo publicly, strip the EXIF before uploading. Don't rely on the platform to do it for you. The platform might change its behavior tomorrow, or the recipient might download the original.

## What about screenshots?

Screenshots taken on most modern devices (iOS, Android, macOS, Windows) do NOT include GPS coordinates. The screenshot capture process does not include the original photo's metadata; it just captures the pixels of what is on the screen. So a screenshot of a photo (e.g., a screenshot of a photo in your gallery) is safe to share.

HOWEVER, a screenshot can include other metadata: the device model, the iOS/Android version, the screen resolution, and — on some platforms — the time the screenshot was taken. This is less sensitive than GPS coordinates, but it is still metadata. If you want a fully clean image, the screenshot method is the easiest way to get one.

## What about cloud photo services?

Google Photos, iCloud, Dropbox, OneDrive all preserve the original EXIF metadata when you upload a photo. The metadata is stored alongside the photo and is visible to anyone with access to the photo (depending on the sharing settings).

If you share a photo via a link from Google Photos, the link recipient can download the original (with EXIF) or a compressed version (with EXIF stripped, depending on the option you choose). The default for "anyone with the link" is the original, EXIF and all.

The safe assumption: any cloud photo sharing preserves EXIF unless you explicitly strip it before uploading.

## Common scenarios where EXIF matters

### Sharing a photo of your home

If you share a photo of your home (inside or outside), the GPS coordinates reveal your address. This is true even if the photo does not show the house number — the GPS is accurate to a few meters. Strip the EXIF before sharing, or take the photo with location services off.

### Sharing a photo of your kid's school or playground

Same risk. The GPS coordinates reveal the location. Combined with the time the photo was taken, anyone with the metadata can figure out where your kid spends their day. Strip the EXIF before sharing, or set a 5-mile radius on the location (iOS and Android both have this option).

### Sharing a photo for a marketplace listing

If you are selling something and include a photo of the item, the EXIF metadata might include the GPS coordinates of where you took the photo (your home). The buyer does not need to know that. Strip the EXIF before uploading.

### Sharing a photo for a dating app

Same risk. The photo you upload reveals where you are. Strip the EXIF before uploading, or take the photo in a neutral location (a coffee shop, a park) with location services off.

### Sharing a photo for a news article or a blog post

If you are a journalist or a blogger, the EXIF metadata on a photo can compromise your source. A photo of a meeting location, a protest, or a sensitive site can reveal the source's location if the EXIF is not stripped. Always strip the EXIF before publishing.

## What about the privacy benefits of EXIF?

EXIF is not all bad. The metadata has legitimate uses:

- Photographers use it to track their settings, their cameras, and their locations for copyright and portfolio purposes.

- Forensic investigators use it to verify the authenticity of photos and to determine when and where they were taken.

- Journalists use it to verify the source of a photo (the time, the location, the camera) before publishing.

- Scientists use it to track the conditions of an experiment (the temperature, the lighting, the camera settings).

For most personal use, the privacy risks outweigh the benefits. The 2-minute workflow above (check, strip, verify) is the right default for photos you share publicly. For photos you keep private, leave the EXIF as-is — it can be useful for organizing your photo library by date or location.

## The honest summary

Every photo you take with a smartphone contains EXIF metadata, including the GPS coordinates of where you took it. Before sharing a photo publicly, strip the EXIF. The 3-step workflow: (1) open the [EXIF Metadata Viewer](/exif-metadata-viewer) on this site, drop in the photo, see what is in the metadata. (2) Strip the EXIF using the viewer's built-in option, or use the [Image Compressor](/image-compressor) / [Image Resizer](/image-resizer) / [Image Cropper](/image-cropper) (all of which strip the original metadata when re-encoding), or use a built-in tool (macOS Preview, Windows Photos), or use exiftool for batch processing. (3) Re-open the cleaned photo in the viewer, confirm the metadata is gone. The whole thing takes 2 minutes per photo. The metadata you most want to remove: GPS coordinates, camera serial number, and date/time. The metadata that is less sensitive but still worth removing: camera model, lens, software version, owner name. The privacy risks of EXIF (location tracking, source identification, alibi confirmation) outweigh the benefits for most personal use. For photos you keep private, leave the EXIF as-is — it is useful for organizing your library.

## Related tools

- [EXIF / Image Metadata Viewer](https://uttir.com/exif-metadata-viewer) — Read EXIF, GPS, IPTC, and other metadata from any image. See camera, lens, location, and timestamp. Your image never leaves your device.
- [Image Compressor](https://uttir.com/image-compressor) — Shrink image file size with quality and format control, and see the savings before you download.
- [Image Cropper](https://uttir.com/image-cropper) — Crop a precise pixel region from any image.
- [Image Resizer](https://uttir.com/image-resizer) — Resize images to exact pixel dimensions with optional aspect-ratio lock.

---

For the full HTML article, visit https://uttir.com/blog/how-to-remove-exif-metadata-from-photos-before-sharing.
This file is the markdown rendering at https://uttir.com/blog/how-to-remove-exif-metadata-from-photos-before-sharing.md. See https://uttir.com/llms.txt for a site-wide summary.
