更改 System.Drawing.Bitmap.Palette
我的内存中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用克隆方法将位图克隆到<代码>Format8bppIndexed
You can try to use the Clone method to clone the bitmap to
Format8bppIndexed