更改 System.Drawing.Bitmap.Palette

发布于 2024-08-07 05:09:16 字数 231 浏览 9 评论 0原文

我的内存中有一个 TIFF 文件,该文件是通过以下代码的变体获得的:

Image myImage = Image.FromFile("somefile.tiff");

目前,myImage.Palette 仅返回两种颜色:黑色和白色。我想扩展它以包括整个色谱。但是,myImage.Palette 没有添加附加颜色的功能。

有人可以帮我的 TIFF 上色吗?谢谢。

I have a TIFF file in memory, which I obtained by a variant of the following code:

Image myImage = Image.FromFile("somefile.tiff");

Currently, myImage.Palette only returns two colors, black and white. I would like to expand this to include the entire color spectrum. However, myImage.Palette does not have a function to add additional colors.

Can someone help give my TIFFs some color? Thanks.

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

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

发布评论

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

评论(1

云胡 2024-08-14 05:09:16

您可以尝试使用克隆方法将位图克隆到<代码>Format8bppIndexed

You can try to use the Clone method to clone the bitmap to Format8bppIndexed

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