lk/data/exiftool.md

41 lines
551 B
Markdown
Raw Normal View History

---
title: "exiftool"
tags: [ "Documentation", "Metadata" ]
---
2020-01-02 00:04:35 +00:00
Find metadata.
```bash
exiftool image.jpg
```
2020-01-02 00:04:35 +00:00
Find info on all images in current directory.
```bash
exiftool -ext .png .
```
2020-01-02 00:04:35 +00:00
You can make this recurring with the -r switch.
And overwrite all metadata:
```bash
exiftool -all= -overwrite_original -ext jpg .
```
2024-08-13 16:58:50 +00:00
(NB: This does not work on pdf data. See [here](pdf_erasure.md) for erasing all pdf data)
2020-01-02 00:04:35 +00:00
Or just GPS data:
```bash
exiftool -gps:all= *.jpg
```
2020-01-02 00:04:35 +00:00
You can also use the imagemagick tool:
```bash
identify -verbose
```
2020-01-02 00:04:35 +00:00
2024-08-13 16:58:50 +00:00