Batch Remove Exif from JPEG and PNG with ImageMagick

Tadashi Shigeoka ·  Sat, April 18, 2020

I’ll introduce how to batch remove Exif information from JPEG and PNG files using ImageMagick.

ImageMagick

Background: Want to Batch Remove Exif Information

There are often cases where you want to remove Exif and metadata from image files to reduce file size or for privacy reasons.

This article introduces how to batch remove Exif information from JPEG and PNG files using the veteran ImageMagick.

Batch Exif Removal Commands

Batch Exif Removal for .jpeg, .jpg

mogrify -strip *.jpg
mogrify -strip *.jpeg

Batch Exif Removal for .png

mogrify -strip *.png

That’s all from the Gemba.