Variable: image-dired-cmd-create-thumbnail-program
image-dired-cmd-create-thumbnail-program is a customizable variable
defined in image-dired-external.el.gz.
Value
"convert"
Documentation
Executable used to create thumbnail.
Used together with image-dired-cmd-create-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-external.el.gz
(defcustom image-dired-cmd-create-thumbnail-program
(if (executable-find "gm") "gm" "convert")
"Executable used to create thumbnail.
Used together with `image-dired-cmd-create-thumbnail-options'."
:type 'file
:version "29.1")