Variable: image-crop-cut-command

image-crop-cut-command is a customizable variable defined in image-crop.el.gz.

Value

("convert" "-draw" "rectangle %l,%t %r,%b" "-fill" "%c" "-" "%f:-")

Documentation

List of command and its command-line arguments to cut a rectangle out of image.

The following format-spec elements are allowed in the value:
%l: Left.
%t: Top.
%r: Right.
%b: Bottom.
%c: Color.
%f: File type to produce.

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

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-crop.el.gz
(defcustom image-crop-cut-command '("convert" "-draw" "rectangle %l,%t %r,%b"
                                    "-fill" "%c"
                                    "-" "%f:-")
  "List of command and its command-line arguments to cut a rectangle out of image.

The following `format-spec' elements are allowed in the value:
%l: Left.
%t: Top.
%r: Right.
%b: Bottom.
%c: Color.
%f: File type to produce."
  :type '(repeat string)
  :version "29.1")