How to remove meta (EXIF) data for my photos | Ubuntu
Environment
Content
As going to upload pictures to Field Papers, not want to share where I was but only the maps, would like to remove the meta (EXIF) data firstly.
First, install exiftool:
To remove meteadata:
To read photo metadata:
Reference
Update
- Ubuntu 14.04 x64
Content
As going to upload pictures to Field Papers, not want to share where I was but only the maps, would like to remove the meta (EXIF) data firstly.
First, install exiftool:
$ sudo apt-get install libimage-exiftool-perl
To remove meteadata:
exiftool -all= /tmp/my_photo.jpg
exiftool -all= *.jpg
To read photo metadata:
exiftool /tmp/my_photo.jpg
Reference
Update