Gangmax Blog

Strip Pictures with ImageMagick

From here.

1
2
3
4
# The following command will remove all the EXIF information 
# of the jpg files under the current directory and set the
# quality to 85% which will decrease the file size.
find . -iname "*.JPG" -exec convert -strip -quality 85 {} {} \;

Comments