在 .NET 中使用全局颜色表创建多帧 gif
我正在尝试使用 .NET 创建多帧 gif,以获得比将每个图像保存在单个文件中更高的压缩率。
我的方法是使用 WPFPresentationCore 中的 GifBitmapEncoder,如下所示:
GifBitmapEncoder e = new GifBitmapEncoder();
e.Frames.Add(frame1);
e.Frames.Add(frame2);
...
e.Save(myStream);
其结果是正确的多帧 gif,但大小几乎与保存单个文件相同。我猜原因是 GifBitmapEncoder 对每个帧使用本地颜色表而不是全局颜色表。
有谁知道是否可以为 GifBitmapEncoder 中的所有帧设置全局颜色表,或者是否有一个免费的 .NET 库可以做到这一点?
I am trying to create a multi-frame gif with .NET to gain more compression than save each of the images in a single file.
My approach is to use the GifBitmapEncoder from the WPF PresentationCore like this:
GifBitmapEncoder e = new GifBitmapEncoder();
e.Frames.Add(frame1);
e.Frames.Add(frame2);
...
e.Save(myStream);
The result of this is a correct multi-frame gif but the size is nearly the same as saving single files. I guess the reason is that the GifBitmapEncoder uses local color tables for each frame instead of a global color table.
Does anybody know if there is a possibility to set a global color table for all frames in the GifBitmapEncoder or is there a free library for .NET which can do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你有没有想过创建一个精灵 PNG 来代替?为此,您将所有图像彼此相邻地放在一个大 PNG 上,然后当您使用它们时,您会在图像所在的位置提取一个矩形。
我的一位同事使用我们免费的 DotImage Photo SDK 制作了一个简单的应用程序来完成此任务。您可以免费使用源代码和产品。他还展示了如何在 CSS 中提取矩形:
http://www.atalasoft.com/cs/blogs/jake/archive/2008/12/22/spritify-writing-a-css-image-sprite -generator-with-dotimage.aspx
Have you thought of creating a sprited PNG instead? For this, you put all of the images next to each other on one big PNG, and then when you use them, you extract a rectangle where the image is.
One of my colleagues used our free DotImage Photo SDK to make a simple app to do it. You could use the source and product for free. He also shows how to extract rectangles in CSS:
http://www.atalasoft.com/cs/blogs/jake/archive/2008/12/22/spritify-writing-a-css-image-sprite-generator-with-dotimage.aspx