Rimuovere gli EXIF data da un'immagine

Da Caos per caso.
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...")
(diff) ← Versione meno recente | Versione attuale (diff) | Versione più recente → (diff)
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`

Link esterni