What are EXIF metadata and how to remove them?

Every time you take a photo with a smartphone or digital camera, dozens of invisible pieces of information are automatically recorded in the image file: GPS coordinates, device model, exact date and time, exposure settings, and much more. These hidden data are called EXIF metadata. They can reveal your location, equipment or habits — often without your knowledge. Here is everything you need to know to understand and remove them.

What are EXIF metadata?

EXIF stands for Exchangeable Image File Format. It is a standard created in 1995 by the Japanese association JEIDA and universally adopted by camera and smartphone manufacturers. It defines a set of information fields that can be embedded directly in image files — primarily JPEG, TIFF and HEIC formats.

These metadata are invisible to the naked eye: they do not appear in the image itself, but travel with the file with every share, upload or send. Most users are completely unaware of their existence.

What do EXIF data actually contain?

A JPEG file taken with a modern smartphone can contain more than 50 distinct EXIF fields. Here are the most common and most sensitive:

  • GPS coordinates: exact latitude, longitude and sometimes altitude of where the photo was taken — enough to identify a precise address
  • Date and time: exact date and time of capture, down to the second
  • Device used: exact manufacturer and model (e.g. Apple iPhone 15 Pro, Samsung Galaxy S24)
  • Software: version of the operating system or editing software used
  • Technical settings: ISO, shutter speed, aperture, focal length, white balance, flash mode
  • Orientation: direction in which the photo was taken
  • Embedded thumbnail: a reduced version of the image, sometimes different from the edited version
  • Author and copyright: photographer's name if set in the device settings
Good to know: GPS coordinates are the most privacy-sensitive EXIF information. If you photograph at home and share the photo without cleaning the metadata, anyone can find your exact address in seconds using a free EXIF reader. This issue affects private individuals as much as journalists, activists or victims of harassment.

Which file formats contain EXIF metadata?

The EXIF format is primarily associated with images, but other file types can also carry sensitive metadata:

  • JPEG / JPG: main format, supports EXIF natively and completely
  • TIFF: supports EXIF, often used in professional photography
  • HEIC / HEIF: Apple format (iPhone), contains very complete metadata including GPS
  • PNG: does not support EXIF strictly speaking, but can contain metadata in text chunks
  • WebP: can contain EXIF metadata in an XMP container
  • RAW (CR2, NEF, ARW…): raw camera format, contains very detailed metadata

How to read the EXIF metadata of an image?

Before removing EXIF data, you can first view them to understand what your photos contain:

  • Windows: right-click on the file → Properties → Details tab. You will see the EXIF data directly without additional software
  • macOS: open the photo in Preview → Tools menu → Show Inspector → EXIF tab
  • Online: tools like exifinfo.org or metadata2go.com let you upload an image and display all its metadata instantly
  • ExifTool: the reference command-line tool for reading, editing or removing metadata on all formats

How to remove EXIF metadata?

There are several methods depending on your operating system and needs.

On Windows (no software required): right-click on the image → Properties → Details tab → click "Remove Properties and Personal Information" at the bottom → choose "Create a copy with all possible properties removed" or manually select the fields to erase.

On macOS (via Preview): Preview does not allow complete native EXIF removal. It is recommended to use ImageOptim (free) or ExifTool for reliable removal.

Via ExifTool (all systems, command line):

exiftool -all= photo.jpg
exiftool -all= /path/to/folder/
exiftool -gps:all= photo.jpg

Via ImageMagick:

convert photo.jpg -strip photo_no_exif.jpg

Mobile apps: on iOS, the Metapho app allows you to view and remove EXIF data. On Android, Photo EXIF Editor serves the same purpose.

Batch EXIF removal

To process dozens or hundreds of images in a single operation, ExifTool is the most suitable tool:

exiftool -all= -overwrite_original *.jpg
exiftool -all= -overwrite_original -r /path/to/folder/

The -overwrite_original option overwrites the original file without creating a backup copy. Without this option, ExifTool creates a _original backup file for each processed image.

Do social networks and platforms automatically remove EXIF?

Most major platforms automatically strip EXIF metadata on upload, particularly for privacy reasons and to reduce file sizes. This is the case with Instagram, Facebook, Twitter/X and WhatsApp. However:

  • This stripping is not guaranteed on all platforms, particularly generic file hosting services
  • The metadata still exists in the original file on your device
  • Some professional services (Flickr, 500px) deliberately keep EXIF because it has value for photographers
  • Emails with attachments do not strip EXIF — a photo sent by email retains all its metadata
MethodSystemBatchFreeTechnical level
Windows PropertiesWindowsNoYesBeginner
ImageOptimmacOSYesYesBeginner
ExifToolAllYesYesIntermediate
ImageMagickAllYesYesIntermediate
Metapho (iOS)iOSNoFreemiumBeginner
Online toolsAllLimitedYesBeginner
Good to know: if you regularly publish photos online — on a blog, portfolio or social media — it is recommended to integrate EXIF removal into your workflow before uploading. ExifTool can be integrated into an automated script or deployment hook to process all images without manual intervention. For professional photographers, keeping technical EXIF data (ISO, focal length, aperture) while removing only GPS is often the best compromise.