在 C# 中将 32 位位图另存为 1 位 .bmp 文件
在 C# 中将 32 位位图转换并保存为 1 位(黑/白).bmp 文件的最简单方法是什么?
What is the easiest way to convert and save a 32-bit Bitmap to a 1-bit (black/white) .bmp file in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实现此目的的最简单方法是使用 Clone()
声明这可能不是最快的方法,但还有更快的方法
The easiest way to do achieve this by using the Clone()
As disclaim this will maybe not the fastest way to do this there are much faster way's to do this
此代码将完成工作:
如有必要,您可以通过使用不安全代码替换 GetPixel() 方法来加快速度。
This code will get the job done:
You can speed it up, if necessary, by using unsafe code to replace the GetPixel() method.