在 C# 中使图像黑白
本文关键字:图像 黑白 | 更新日期: 2023-09-27 18:33:20
我正在尝试在 c# 中使图像黑白。这是我的代码:
public static void SetGrayscale(Bitmap b)
{
Bitmap temp = (Bitmap) b;
Bitmap bmap = (Bitmap)temp.Clone();
Color c;
for (int i = 0; i < bmap.Width; i++)
{
for (int j = 0; j < bmap.Height; j++)
{
c = bmap.GetPixel(i, j);
byte gray = (byte)(.299 * c.R + .587 * c.G + .114 * c.B);
bmap.SetPixel(i, j, Color.FromArgb(gray, gray, gray));
}
}
b = (Bitmap)bmap.Clone();
}
static void Main(string[] args)
{
Bitmap bm = new Bitmap(Image.FromFile("D:''users''visual studio 2010''Projects''aaa''20130924_144411.tif"));
byte[] pixels = ImageToByte(bm);
SetGrayscale(bm);
}
问题是,它不会变成黑白,它仍然是一样的。我没有保存更改的图像吗?这里可能有什么问题?
谢谢
你指的是磁盘上的文件没有改变吗?您必须保存灰度位图:bm.Save("D:''bitmap.tif");