2010-07-18 21:24:27

Remove Exif data

Sometimes it's advantageous to remove Exif metadata from image files, for example when posting images online. Fortunately, that's not a big deal since we're using linux:

mogrify -strip image.jpg
...or if you want to process more files:
mogrify -strip *.jpg

Posted by haui | Permanent Link | Categories: linux