got linux/*nix as os or cygwin on windows ? then just use the imagemagick suite of tools like this:
- Code: Select all
mogrify -strip filename
you can even script this to e.g. strip all jpg files in the current dir from exif infos:
- Code: Select all
find . -iname '*.jpg' | xargs mogrify -strip
enjoy,
niko