.NET 中的布尔位图运算?
我有两个 8bpp 位图。我想对一个与另一个进行按位与操作,但我在 .NET 中没有看到任何明显的方法来执行此操作。是否可以在不使用非 .NET 方法的情况下执行此操作? 谢谢!
I have two 8bpp bitmaps. I want to do a bitwise AND of one to the other, but I don't see any obvious way to do this in .NET. Is it possible to do this without using non-.NET methods?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为您正在寻找 Bitmap.LockBits。
I think you're looking for Bitmap.LockBits.
您可以尝试将位图转换为字节数组,然后循环遍历字节并将它们组合在一起
编辑:
对循环想法进行时间测试:
示例代码:
结果如下:
图像“Image1”和“Image2”为 4000 x 2250(从数码相机转换为 8 位 bmp)
You could try converting the Bitmap to a Byte array and then loop through the bytes anding them together
Edit :
Ran a Time Test on the loop idea:
Example Code:
with the following results :
The images "Image1" and "Image2" were 4000 x 2250 (From a digital camera converted to 8 bit bmp)
如果性能不重要,请使用 Bitmap.GetPixel 和 Bitmap.SetPixel
If performance is not important, use Bitmap.GetPixel and Bitmap.SetPixel
您可以使用“BitBlt”函数,您可以在其中 AND 源和目标 (SRCAND),pinvoke 签名为 此处。
这里有一篇关于 Codeproject 的文章,它使用 BitBlt 包装器此处。
希望这有帮助,
此致,
汤姆.
You can use the 'BitBlt' function, in which you can AND the source and destination (SRCAND), the pinvoke signature is here.
Here is an article on Codeproject that uses a BitBlt wrapper here.
Hope this helps,
Best regards,
Tom.