Variable: image-crop-rotate-command
image-crop-rotate-command is a customizable variable defined in
image-crop.el.gz.
Value
("convert" "-rotate" "%r" "-" "%f:-")
Documentation
List of command and its command-line arguments to rotate an image.
The following format-spec elements are allowed in the value:
%r: Rotation (in degrees).
%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-rotate-command '("convert" "-rotate" "%r" "-" "%f:-")
"List of command and its command-line arguments to rotate an image.
The following `format-spec' elements are allowed in the value:
%r: Rotation (in degrees).
%f: File type to produce."
:type '(repeat string)
:version "29.1")