Variable: image-crop-resize-command
image-crop-resize-command is a customizable variable defined in
image-crop.el.gz.
Value
("convert" "-resize" "%wx" "-" "%f:-")
Documentation
List of command and command-line arguments to resize an image.
The following format-spec elements are allowed in the value:
%w: Width.
%f: File type to produce.
This variable was added, or its default value changed, in Emacs 29.1.
Source Code
;; Defined in /usr/src/emacs/lisp/image/image-crop.el.gz
(defcustom image-crop-resize-command '("convert" "-resize" "%wx" "-" "%f:-")
"List of command and command-line arguments to resize an image.
The following `format-spec' elements are allowed in the value:
%w: Width.
%f: File type to produce."
:type '(repeat string)
:version "29.1")