Differenze tra le versioni di "Rimuovere gli EXIF data da un'immagine"

Da Caos per caso.
Jump to navigation Jump to search
(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...")
 
 
Riga 1: Riga 1:
 
This command removes EXIF metadata from the specified photo:
 
This command removes EXIF metadata from the specified photo:
  
`exiftool -all= foo.jpg`
+
<pre>exiftool -all= foo.jpg</pre>
  
 
To process multiple photos you can use the following command which cleans all the photos in the current directory:
 
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`
+
<pre>for i in *.jpg; do echo "Processing $i"; exiftool -all= "$i"; done</pre>
  
 
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:
 
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`
+
<pre>exiftool -geotag= foo.jpg</pre>
  
 
== Link esterni ==
 
== Link esterni ==
* Fonte: [https://www.linux-magazine.com/Online/Blogs/Productivity-Sauce/Remove-EXIF-Metadata-from-Photos-with-exiftool]
+
* Fonte: [https://www.linux-magazine.com/Online/Blogs/Productivity-Sauce/Remove-EXIF-Metadata-from-Photos-with-exiftool Remove-EXIF-Metadata-from-Photos-with-exiftool]
  
 
[[Category:Linux]]
 
[[Category:Linux]]

Versione attuale delle 08:30, 16 giu 2021

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