all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#33282: ImageMagick delegates
@ 2018-11-05 20:52 Juri Linkov
  2018-11-06 21:39 ` Juri Linkov
  2019-09-24 16:47 ` Lars Ingebrigtsen
  0 siblings, 2 replies; 5+ messages in thread
From: Juri Linkov @ 2018-11-05 20:52 UTC (permalink / raw
  To: 33282

WebP is an image format that is gaining popularity,
but currently can't be displayed by image-mode.

It's supported by ImageMagick after installing

  sudo apt-get install webp

The command `identify -list delegate` confirms that:

  webp => "dwebp' -pam '%i' -o '%o"

It's possible to work around its missing support by adding to ~/.emacs:

  (add-to-list 'imagemagick-enabled-types 'WEBP)

  (advice-add 'imagemagick-types :around
              (lambda (orig-fun &rest args)
                (append (apply orig-fun args) '(WEBP))))

  (imagemagick-register-types)

So the question is: should `imagemagick-types' return
the delegate list in addition to the current list
of non-delegate image types?





^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-09-26 13:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-05 20:52 bug#33282: ImageMagick delegates Juri Linkov
2018-11-06 21:39 ` Juri Linkov
2019-09-24 16:47 ` Lars Ingebrigtsen
2019-09-25 20:07   ` Juri Linkov
2019-09-26 13:52     ` Lars Ingebrigtsen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.