I’ll introduce how to batch remove Exif information from JPEG and PNG files using ImageMagick.
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.
mogrify -strip *.jpg
mogrify -strip *.jpeg
mogrify -strip *.png
That’s all from the Gemba.