如何将索引像素格式图像转换为 32 位图像?

发布于 2024-07-19 18:25:18 字数 179 浏览 7 评论 0原文

我获取了一个图像并尝试使用 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 技术交流群。

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

发布评论

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

评论(2

比忠 2024-07-26 18:25:18

一种简单的方法是创建一个相同大小的新图像(具有 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.

星軌x 2024-07-26 18:25:18

您可以做的是基于您可以计算 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.

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