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.
how to config WEBP delegate library(libwebp) on windows ?
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: how to config WEBP delegate library(libwebp) on windows ?
Imagemagick does not support creating animated WEBP. If you look at
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
Code: Select all
convert -list format
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 ?
Now i use gif2webp directly, thanks for your reply.
Re: how to config WEBP delegate library(libwebp) on windows ?
Now i use gif2webp directly, thanks for your reply.fmw42 wrote: ↑2018-08-25T21:57:14-07:00 Imagemagick does not support creating animated WEBP. If you look at
it saysCode: Select all
convert -list format
WEBP* WEBP rw- WebP Image Format (libwebp 0.6.1[0208])
For animated webp, it would need to have rw+
+ support for multiple images