将绘制的图像保存为单色

Saving a Drawn Image as MonoChrome

大家好,我有一张我用 graphics.drawline

绘制的图像
Bitmap Signature = new Bitmap(x, y);
   Graphics g;
                            g = Graphics.FromImage(Signature);
                            //MessageBox.Show(cord.Length.ToString());
                            Pen mypen = new Pen(Brushes.Black);
                            mypen.Width = 2;
                            mypen.EndCap = System.Drawing.Drawing2D.LineCap.Square;
                            mypen.StartCap = System.Drawing.Drawing2D.LineCap.Square;

无论如何

Signature.Save(filename);

效果很好我正在尝试将此图像设为单色我已经尝试了许多不同的解决方案,例如此

Save a 32-bit Bitmap as 1-bit .bmp file in C#

同样,一旦我引用 imagetype.bmp 它就会变黑 任何理想或建议,我 运行 以上 link 像这样

Bitmap converted = BitmapTo1Bpp(Signature);
converted.Save(filename);

但是生成的图片总是纯黑的,有人可以帮我把它保存为单色图片吗

经过更多搜索,我发现

g = Graphics.FromImage(Signature);
g.Clear(Color.White);

为图形绘图添加白色背景解决了问题