Variable: image-dired-cmd-write-exif-data-options

image-dired-cmd-write-exif-data-options is a customizable variable defined in image-dired.el.gz.

Value

("-%t=%v" "%f")

Documentation

Arguments of command used to write EXIF data.

Used with image-dired-cmd-write-exif-data-program. Available format specifiers are: %f which is replaced by the image file name, %t which is replaced by the tag name and %v which is replaced by the tag value.

This variable was added, or its default value changed, in Emacs 26.1.

Probably introduced at or before Emacs version 26.1.

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defcustom image-dired-cmd-write-exif-data-options
  '("-%t=%v" "%f")
  "Arguments of command used to write EXIF data.
Used with `image-dired-cmd-write-exif-data-program'.
Available format specifiers are: %f which is replaced by
the image file name, %t which is replaced by the tag name and %v
which is replaced by the tag value."
  :version "26.1"
  :type '(repeat (string :tag "Argument")))