Variable: image-dired-cmd-rotate-thumbnail-program

image-dired-cmd-rotate-thumbnail-program is a customizable variable defined in image-dired.el.gz.

This variable is obsolete since 29.1.

Value

"mogrify"

Documentation

Executable used to rotate thumbnail.

Used together with image-dired-cmd-rotate-thumbnail-options.

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

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defcustom image-dired-cmd-rotate-thumbnail-program
  (if (executable-find "gm") "gm" "mogrify")
  "Executable used to rotate thumbnail.
Used together with `image-dired-cmd-rotate-thumbnail-options'."
  :type 'file
  :version "29.1")