Rimuovere gli EXIF data da un'immagine
Jump to navigation
Jump to search
This command removes EXIF metadata from the specified photo:
exiftool -all= foo.jpg
To process multiple photos you can use the following command which cleans all the photos in the current directory:
for i in *.jpg; do echo "Processing $i"; exiftool -all= "$i"; done
Instead of purging all EXIF metadata from a photo, you can also remove individual fields. For example, the following command can come in handy when you need to remove geographical coordinates embedded in the photo:
exiftool -geotag= foo.jpg