Variable: image-converter--converters

image-converter--converters is a variable defined in image-converter.el.gz.

Value

((graphicsmagick :command ("gm" "convert") :probe ("-list" "format"))
 (ffmpeg :command "ffmpeg" :probe "-decoders")
 (imagemagick :command ("convert" "-layers" "merge") :probe
	      ("-list" "format")))

Documentation

List of supported image converters to try and required command-line switches.

Source Code

;; Defined in /usr/src/emacs/lisp/image/image-converter.el.gz
(defvar image-converter--converters
  '((graphicsmagick :command ("gm" "convert") :probe ("-list" "format"))
    (ffmpeg :command "ffmpeg" :probe "-decoders")
    ;; "-layers merge" flattens visible layers in e.g. Gimp XCF files.
    (imagemagick :command ("convert" "-layers" "merge") :probe ("-list" "format")))
  "List of supported image converters to try and required command-line switches.")