在 ASP.net/GDI 上设置调色板+ 生成的 PNG 图像

发布于 2024-07-18 08:27:27 字数 177 浏览 0 评论 0原文

我刚刚在 ASP.net 中构建了一个返回 PNG 图像的应用程序。

生成的图像在透明背景上是全黑的。 有没有办法索引图像以减少文件大小?

我无法在创建新图像时对其进行索引,因为我使用的图形对象不允许这样做。

非常感谢您的帮助 - 我已经搜索了很长时间,但似乎不知道如何设置。

I just built an application in ASP.net that returns a PNG image.

The resulting image is entirely black on a transparent background. Is there a way to index the image to reduce the file size?

I can not index the new image as it is created because I am using the graphics object which will not allow it.

Thank you very much for the help - I've been searching for ages and i can't seem to figure out how to set this up.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你的往事 2024-07-25 08:27:27

据我所知,您无法直接使用 GDI+ 来做到这一点 - 内置 PNG 编码器对输出颜色深度的支持非常有限......即使您设法创建索引位图 在内存中拥有良好的调色板,您仍然会发现它以 32bpp PNG 的形式写入。 为了获得所需的控制,您必须求助于第三方图像库。

看:

To the best of my knowledge, you can't do this using straight GDI+ - the built-in PNG encoder is very limited in its support for output color depths... Even if you manage to create an indexed Bitmap with a good palette in-memory, you'll still find it written out as a 32bpp PNG. To get the kind of control you need, you'll have to resort to a third-party image library.

See:

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