WebP-wrapper
WebP-wrapper copied to clipboard
error with a animated webp
When I try to load an animated webp, I get an error. Will there be management of animated files?
Yeah, it would be nice to see the support of animated files.
Ditto. Could really use it.
Please, give me more details. Load animated WebP into ¿....? Convert animated WebP to ¿...?
With the version defined here, I've this error:
With any WebP animated image.
Actually, with the last commited version, there is no error but there is no image displayed.
Neverless, I can get file information:
In the new version, the DLL suport animated WebP. But it is trying to decode and render in an image (a windows bitmap). Bitmaps are static, so they will hardly be able to present a moving image. In addition, the windows form control does not support animations either.
So the question is, what do you want that webP to become? Where do you want to present it? What container do you want to send it to?
It does not need to handle the animation. Ideally, we should be able to get every frame. By their index for example.
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 an Image/Bmp that can be played using the System.Drawing.ImageAnimator.Animate(Image, EventHandler) Method.
See the example in https://docs.microsoft.com/en-us/dotnet/api/system.drawing.imageanimator.animate?view=windowsdesktop-5.0
I found an example showing how to create a multi-frame Bitmap here: https://docs.microsoft.com/en-us/windows/win32/gdiplus/-gdiplus-creating-and-saving-a-multiple-frame-image-use . Rather than saving to a file, you'd probably want to save to a .MemoryStream
I need this too. Actually I would love to be able to throw a WEBP file into this library and be returned an object with a list of images. If the webp file is not an animation then there will only be 1 image in the images collection. There could also be like an IsAnimated property. Im sure there are a bunch of other information about the file that can be returned as well. Like if animated then some info on framerate or something like that.
This would be awesome to have for sure.
来信已收到,谢谢,吼吼!O(∩_∩)O~
FWIW, I ended up using 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 bitmap = null;
try {
bitmap = new Bitmap(fi.FullName);
} catch (Exception) {
// use 'MagickImage()' if you want just the 1st frame of an animated image.
// 'MagickImageCollection()' returns all frames
using (var magickImages = new MagickImageCollection(fi)) {
var ms = new MemoryStream();
if (magickImages.Count > 1) {
magickImages.Write(ms, MagickFormat.Gif);
} else {
magickImages.Write(ms, MagickFormat.Png);
}
bitmap?.Dispose();
bitmap = new Bitmap(ms);
// keep MemoryStream from being garbage collected while Bitmap is in use
bitmap.Tag = ms;
}
}
return bitmap;
}
FWIW, I ended up using 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 bitmap = null; try { bitmap = new Bitmap(fi.FullName); } catch (Exception) { // use 'MagickImage()' if you want just the 1st frame of an animated image. // 'MagickImageCollection()' returns all frames using (var magickImages = new MagickImageCollection(fi)) { var ms = new MemoryStream(); if (magickImages.Count > 1) { magickImages.Write(ms, MagickFormat.Gif); } else { magickImages.Write(ms, MagickFormat.Png); } bitmap?.Dispose(); bitmap = new Bitmap(ms); // keep MemoryStream from being garbage collected while Bitmap is in use bitmap.Tag = ms; } } return bitmap; }
This works. But it takes a while to load the webp files. My browser can quickly load the same files. Maybe chrome is just optimized for webp files. Also they play at different framerates too.
Thanks for posting.
Still no support for animated webp?
There doesn't seem to be any wrapper that handles them yet this one suggests being "the most complete wrapper", unfortunate.
Even Google's own decoding app doesn't support animated webp lol
来信已收到,谢谢,吼吼!O(∩_∩)O~
I've been using Magick.NET to convert WebP images animated GIFs for about 6 months - see my code example above. It's not super fast, but works well. Also, the framerate issue that holm76 mentioned may have been fixed in the latest release of Magick.NET, see https://github.com/dlemstra/Magick.NET/issues/1102