Rimuovere gli EXIF data da un'immagine
Versione del 16 giu 2021 alle 08:28 di Giorgio (discussione | contributi) (Creata pagina con "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 photo...")
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`
Link esterni
- Fonte: [1]