从图像创建1bpp蒙版

时间:2008-11-07 21:00:57

标签: c# graphics gdi+ drawing gdi

如何使用C#中的GDI从图像创建每像素1位掩码?我试图创建掩码的图像保存在System.Drawing.Graphics对象中。

我见过在循环中使用Get / SetPixel的示例,这些示例太慢了。我感兴趣的方法是仅使用BitBlits的方法,如this。我无法让它在C#中工作,我们非常感谢任何帮助。

3 个答案:

答案 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中,创建单声道掩码的过程很简单。

  • 创建一个与源位图一样大的未初始化的1bpp位图。
  • 将其选为DC。
  • 将源位图选择为DC。
  • 目标DC上的SetBkColor以匹配源位图的掩码颜色。
  • 使用SRC_COPY将源映射到目标。

对于奖励积分,通常需要将遮罩重新插入源位图(使用SRC_AND)以将遮罩颜色清零。

答案 2 :(得分:2)

你的意思是LockBits? Bob Powell概述了LockBits here;这应该提供对RGB值的访问,以满足您的需要。您可能还想查看ColorMatrix,like so