在 .NET 中使用全局颜色表创建多帧 gif

发布于 2024-11-07 07:06:13 字数 417 浏览 0 评论 0原文

我正在尝试使用 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笑看君怀她人 2024-11-14 07:06:13

你有没有想过创建一个精灵 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文