snippets/old_snippets/remove-gps-metadata-from-image.en.md

489 B

title seo_description date draft snippet_types
remove gps metadata from image code snippet on how to use exiftool in the shell to remove gps metadata from images 2023-01-31T12:53:04+01:00 false
exiftool

Recently I noticed some of the images on my site had GPS metadata info. Thats not very private! So I did some googling and found this solution.

$ exiftool -GPS*= $(fd -e jpg -e png -e jpeg)

source