在 ASP.net/GDI 上设置调色板+ 生成的 PNG 图像
我刚刚在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,您无法直接使用 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: