Forrest logo
back to context overview

exif

List of commands for exif:

  • exif:tldr:0bfe9 exif: Show the raw contents of the "Model" tag in the given image.
    $ exif --ifd=${0} --tag=${Model} --machine-readable ${image-jpg}
    try on your machine
    explain this command
  • exif:tldr:2930a exif: Extract the image thumbnail into the file `thumbnail.jpg`.
    $ exif --extract-thumbnail --output=${thumbnail-jpg} ${image-jpg}
    try on your machine
    explain this command
  • exif:tldr:34e79 exif: Change the value of the "Artist" tag to John Smith and save to `new.jpg`.
    $ exif --output=${new-jpg} --ifd=${0} --tag="${Artist}" --set-value="${John Smith}" --no-fixup ${image-jpg}
    try on your machine
    explain this command
  • exif:tldr:806d3 exif: Show a table listing known EXIF tags and whether each one exists in an image.
    $ exif --list-tags --no-fixup ${image-jpg}
    try on your machine
    explain this command
  • exif:tldr:95713 exif: Show all recognized EXIF information in an image.
    $ exif ${path-to-image-jpg}
    try on your machine
    explain this command
back to context overview