lk/system/exiftool

39 lines
460 B
Plaintext
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 .
```
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