Answer by MichaelK for How can I read and remove meta (exif) data from my...
There are a number of tools for this, as others have listed. One more that I found on my system is exiv2.Install: sudo apt-get install exiv2View: exiv2 myimage.jpgRemove: exiv2 rm myimage.jpgAdditional...
View ArticleAnswer by Sybil for How can I read and remove meta (exif) data from my photos...
I wish to add mat2 which support not only images. It's recommended by privacyguides.org (formerly known as privacytools.io) community.MAT2 is free software, which allows the removal of metadata of...
View ArticleAnswer by Pablo Bianchi for How can I read and remove meta (exif) data from...
ImageMagickInstead of Exiftool, to handle Exif metadata (IPTC, XMP and ICC image metadata also) I found ImageMagick (install it with sudo apt install imagemagick) more useful and command easier to...
View ArticleAnswer by Andre Petkova for How can I read and remove meta (exif) data from...
To remove then change a single field we can use this command:exiftool -Copyright= IMG_3357.jpgexiftool -Copyright=LinuxSlaves IMG_3357.jpgReference
View ArticleAnswer by klenwell for How can I read and remove meta (exif) data from my...
Install exiftool:sudo apt-get install libimage-exiftool-perlTo read photo metadata:exiftool /tmp/my_photo.jpgTo erase photo metadata:exiftool -all= /tmp/my_photo.jpgBefore:ExifTool Version Number :...
View ArticleHow can I read and remove meta (exif) data from my photos using the command...
Just looked this up. Figure I'd share it here for future reference.
View Article