View Full Version : EXIF batch processing software
jcolyn
May 15th, 2011, 02:35 AM
Any good software for batch deleting of exif data in digital photos?
Irfanview will do it but then I'd have to install wine which I don't want to unless it is the only option..
robert shearer
May 15th, 2011, 07:06 AM
Perhaps this would be worth investigating....
http://linux.die.net/man/1/jhead
Cheers Bob.
jcolyn
May 16th, 2011, 12:39 AM
Perhaps this would be worth investigating....
http://linux.die.net/man/1/jhead
Cheers Bob.
I've tried jhead. It only does part of what I need.
So far the only program I have found that will do it all is Irfanview which of course is a ******* program.
In the end I suspect I'll have to install it via wine..
mcduck
May 17th, 2011, 07:29 PM
Imagemagick does that pretty well (And removes all other metadata as well).
for example:
convert file.jpg -strip file.jpg
...or the same for all images in the current directory:
for i in *.jpg; do convert "$i" -strip "$i"; done
(if you don't need to keep the original image you can use the mogrify command instead of convert. In that case you don't need to specify the output file, as mogrify simply overwrites the original.)
edit: Exiftool should work as well if it's only the EXIF data you wish to edit/remove.
Powered by vBulletin® Version 4.2.2 Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.