davidei1955

Results 3 comments of davidei1955

As Lacro59 said, just be able to get every frame in a manner similar to the way an animated GIF is converted to an Image. In other words, I'd like...

FWIW, I ended up using [Magick.NET](https://github.com/dlemstra/Magick.NET) to convert WebP images to PNG's (single frame) or GIF's (animated). My code looks like: ``` public static Bitmap NewBitmap(this FileInfo fi) { Bitmap...

I've been using [Magick.NET](https://github.com/dlemstra/Magick.NET) to convert WebP images animated GIFs for about 6 months - see [my code example above](https://github.com/JosePineiro/WebP-wrapper/issues/27#issuecomment-1027476458 ). It's not super fast, but works well. Also, the...