I’ll introduce how to batch remove Exif information from JPEG and PNG files using 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.