2020-10-14 18:43:43 -04:00
|
|
|
# exif
|
|
|
|
|
|
|
|
> Show and change EXIF information in JPEG files.
|
2025-04-25 04:34:04 +03:00
|
|
|
> More information: <https://manned.org/exif>.
|
2020-10-14 18:43:43 -04:00
|
|
|
|
|
|
|
- Show all recognized EXIF information in an image:
|
|
|
|
|
|
|
|
`exif {{path/to/image.jpg}}`
|
|
|
|
|
|
|
|
- Show a table listing known EXIF tags and whether each one exists in an image:
|
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`exif {{[-l|--list-tags]}} --no-fixup {{path/to/image.jpg}}`
|
2020-10-14 18:43:43 -04:00
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
- Extract the image thumbnail into a separate file:
|
2020-10-14 18:43:43 -04:00
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`exif {{[-e|--extract-thumbnail]}} {{[-o|--output]}} {{path/to/thumbnail.jpg}} {{path/to/image.jpg}}`
|
2020-10-14 18:43:43 -04:00
|
|
|
|
|
|
|
- Show the raw contents of the "Model" tag in the given image:
|
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`exif --ifd {{0}} {{[-t|--tag]}} "Model" {{[-m|--machine-readable]}} {{path/to/image.jpg}}`
|
2020-10-14 18:43:43 -04:00
|
|
|
|
2021-01-31 14:05:18 -03:00
|
|
|
- Change the value of the "Artist" tag to John Smith and save to `new.jpg`:
|
2020-10-14 18:43:43 -04:00
|
|
|
|
2025-04-25 04:34:04 +03:00
|
|
|
`exif {{[-o|--output]}} {{path/to/new.jpg}} --ifd {{0}} {{[-t|--tag]}} "Artist" --set-value "John Smith" --no-fixup {{path/to/image.jpg}}`
|