如何使用C#中的GDI从图像创建每像素1位掩码?我试图创建掩码的图像保存在System.Drawing.Graphics对象中。
我见过在循环中使用Get / SetPixel的示例,这些示例太慢了。我感兴趣的方法是仅使用BitBlits的方法,如this。我无法让它在C#中工作,我们非常感谢任何帮助。
答案 0 :(得分:6)
试试这个:
using System.Drawing;
using System.Drawing.Imaging;
using System.Runtime.InteropServices;
...
public static Bitmap BitmapTo1Bpp(Bitmap img) {
int w = img.Width;
int h = img.Height;
Bitmap bmp = new Bitmap(w, h, PixelFormat.Format1bppIndexed);
BitmapData data = bmp.LockBits(new Rectangle(0, 0, w, h), ImageLockMode.ReadWrite, PixelFormat.Format1bppIndexed);
for (int y = 0; y < h; y++) {
byte[] scan = new byte[(w + 7) / 8];
for (int x = 0; x < w; x++) {
Color c = img.GetPixel(x, y);
if (c.GetBrightness() >= 0.5) scan[x / 8] |= (byte)(0x80 >> (x % 8));
}
Marshal.Copy(scan, 0, (IntPtr)((int)data.Scan0 + data.Stride * y), scan.Length);
}
bmp.UnlockBits(data);
return bmp;
}
GetPixel()很慢,您可以使用不安全的字节加速它。
答案 1 :(得分:3)
在Win32 C API中,创建单声道掩码的过程很简单。
对于奖励积分,通常需要将遮罩重新插入源位图(使用SRC_AND)以将遮罩颜色清零。
答案 2 :(得分:2)