Created
May 17, 2012 20:24
-
-
Save davidvanvickle/2721394 to your computer and use it in GitHub Desktop.
Remove EXIF data from JPG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# show EXIF data | |
exiftool image.jpg | |
# first install exiftool, then use "-All=" to wipe all EXIF data from JPG | |
# this will modify image.jpg and create backup file image.jpg_original | |
exiftool -All= image.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment