add the old snippet md files
This commit is contained in:
parent
fc0dd204c7
commit
bcf8313a4b
110 changed files with 3048 additions and 0 deletions
17
old_snippets/remove-gps-metadata-from-image.en.md
Normal file
17
old_snippets/remove-gps-metadata-from-image.en.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
title: "remove gps metadata from image"
|
||||
seo_description: code snippet on how to use exiftool in the shell to remove gps metadata from images
|
||||
date: 2023-01-31T12:53:04+01:00
|
||||
draft: false
|
||||
snippet_types:
|
||||
- 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.
|
||||
|
||||
```shell
|
||||
$ exiftool -GPS*= $(fd -e jpg -e png -e jpeg)
|
||||
```
|
||||
|
||||
[source](https://exiftool.org/forum/index.php?topic=12615.0)
|
||||
Loading…
Add table
Add a link
Reference in a new issue