* lisp/image/image-converter.el (image-converter--converters):
Move ImageMagick last in the list.
(defvar image-converter--converters
'((graphicsmagick :command "gm convert" :probe "-list format")
- (imagemagick :command "convert" :probe "-list format")
- (ffmpeg :command "ffmpeg" :probe "-decoders"))
+ (ffmpeg :command "ffmpeg" :probe "-decoders")
+ (imagemagick :command "convert" :probe "-list format"))
"List of supported image converters to try.")
(defun image-convert-p (file)