but Emacs should not). To disable ImageMagick entirely, change
@code{imagemagick-types-inhibit} to @code{t}.
-@vindex convert-images-externally
+@vindex image-use-external-converter
If Emacs doesn't have native support for the image format in
-question, and @code{convert-images-externally} is non-@code{nil},
+question, and @code{image-use-external-converter} is non-@code{nil},
Emacs will try to determine whether there are external utilities that
can be used to transform the image in question to @acronym{PNG} before
displaying. GraphicsMagick, ImageMagick and @command{ffmpeg} are
(const :tag "Automatically compute" auto))
:version "26.1")
-(defcustom convert-images-externally nil
+(defcustom image-use-external-converter nil
"If non-nil, `create-image' will use external converters for exotic formats.
Emacs handles most of the common image formats (SVG, JPEG, PNG, GIF
and some others) internally, but images that don't have native
(image-type-from-data source)
(or (image-type-from-file-header source)
(image-type-from-file-name source)
- (and convert-images-externally
+ (and image-use-external-converter
(progn
(require 'image-converter)
(image-convert-p source))))))