EXIF除去ツール

Strip all EXIF metadata from your images including GPS location, camera info, and personal data.

Click or drag images here to upload

Up to 20 images · Max 10MB each
0 ファイル

EXIF Remover

This tool removes all EXIF metadata from your images by re-encoding them through the Canvas API. GPS coordinates, camera information, timestamps, and all other metadata are stripped.

The tool processes images entirely in your browser. No files are uploaded to a server.

How to use

  1. Drag and drop images onto the upload area, or click to select files.
  2. Each image is processed and all EXIF metadata is removed.
  3. Download individual cleaned images or use Download All to get a ZIP archive.

Why remove EXIF data?

Photos taken with smartphones often contain GPS coordinates that reveal exactly where the photo was taken. Sharing such photos publicly can expose your home, workplace, or other sensitive locations.

Removing EXIF data before sharing photos protects your privacy. It also slightly reduces file size since the metadata is no longer included.

Remove EXIF with Python

Strip EXIF data by re-saving with Pillow:

from PIL import Image

original = Image.open('photo.jpg')
original.save('clean.jpg')  # EXIF not preserved by default