I know there are several windows programs to do this, and photoshop has a "Save for Web" option which does this, but I want a command line option, or a batch processing option for this. Any thoughts?

link|improve this question

Have you tried Automator, maybe with third party actions (e.g. Pixelmator?)? – Daniel Beck Sep 14 '11 at 14:15
feedback

3 Answers

up vote 2 down vote accepted

Have a look at Imagemagick. Its -strip option clear an image of any profiles and comments.

convert orig.jpg -strip result.jpg

or

mogrify -strip orig.jpg

Here's more info on photo handling with Imagemagick.

link|improve this answer
feedback

Since you mention Photoshop: Photoshop is scriptable using vbscript, javascript, or applescript. Here is an OK quick-start quide which includes a code snippet that utilizes the save for web feature. ( http://www.mactech.com/articles/mactech/Vol.22/22.08/ScriptingPhotoshop/index.html )

link|improve this answer
feedback

One of the easiest software I've found, with a GUI, to remove EXIF data is SmallImage.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.