Skip to content

Instantly share code, notes, and snippets.

@davidvanvickle
Created May 17, 2012 20:24
Show Gist options
  • Save davidvanvickle/2721394 to your computer and use it in GitHub Desktop.
Save davidvanvickle/2721394 to your computer and use it in GitHub Desktop.
Remove EXIF data from JPG
# 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