Page 1 of 1

how to config WEBP delegate library(libwebp) on windows ?

Posted: 2018-08-25T21:29:59-07:00
by jack
I want to convert Animated GIF to animated WebP. It seems to need to modify the delegates.xml,I had a try but it's still not work.
Anyone know how to config WEBP delegate library(libwebp) with ImageMagick on windows? thx.

Re: how to config WEBP delegate library(libwebp) on windows ?

Posted: 2018-08-25T21:57:14-07:00
by fmw42
Imagemagick does not support creating animated WEBP. If you look at

Code: Select all

convert -list format
it says

WEBP* WEBP rw- WebP Image Format (libwebp 0.6.1[0208])

For animated webp, it would need to have rw+

+ support for multiple images

Re: how to config WEBP delegate library(libwebp) on windows ?

Posted: 2018-08-27T08:01:03-07:00
by jack
Now i use gif2webp directly, thanks for your reply.

Re: how to config WEBP delegate library(libwebp) on windows ?

Posted: 2018-08-27T08:02:17-07:00
by jack
fmw42 wrote: 2018-08-25T21:57:14-07:00 Imagemagick does not support creating animated WEBP. If you look at

Code: Select all

convert -list format
it says

WEBP* WEBP rw- WebP Image Format (libwebp 0.6.1[0208])

For animated webp, it would need to have rw+

+ support for multiple images
Now i use gif2webp directly, thanks for your reply.