如何将索引像素格式图像转换为 32 位图像?
我获取了一个图像并尝试使用 Graphics.FromImage(image) 加载到图形对象中,但是如果图像具有索引像素格式,则会引发异常。
有没有办法安全地转换索引图像?
更新:感谢 Joe 提供的提示,将旧图像绘制在新图像上,而不是我尝试转换它。 这很有意义。
I have an image that I get and attempt to load into a graphics object using Graphics.FromImage(image), however this throws an exception if the image has an indexed pixel format.
Is there a way to safely convert an indexed image?
Update: Thanks to Joe for the tip to just draw the old image over the new one, instead I was trying to convert it. This makes a lot of sense.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种简单的方法是创建一个相同大小的新图像(具有 32 位像素格式)。 然后为该图像创建一个图形对象,并在其上绘制原始图像。
One easy way is to create a new image of the same size (with a 32-bit pixel format). Then create a graphics object for that image and draw the original on top of it.
您可以做的是基于您可以计算 3 通道颜色空间中的欧几里得距离的索引。 然后找到最接近的颜色并将这些值用于您的新图像。
what you can do is based on the indexes u can calculate the euclidian distance in the 3 channel color space. Then find the closest color and use those values for your new image.