Jump to content
ElementaryOS France

[Terminal] Exiftool - supprimer les meta donnée d'une photo


Recommended Posts

Installer Exif :

sudo apt-get install exif

Puis la librairie et les tool :

sudo apt-get install libimage-exiftool-perl

Pour supprimer les données :

exiftool -all= *.jpg

Pour en savoir plus :
http://fr.wikipedia.org/wiki/Exchangeable_image_file_format


Si vous avez tout un dossier d'images :

#!/bin/bash

exiftool -all= *.jpg;
exiftool -all= *.JPG;
exiftool -all= *.png;
exiftool -all= *.PNG;
rm *_original;
Edited by enemesis
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...