winform用GDI+对图片进行灰度处理

 我来答
百度网友5888e47
2011-06-19 · TA获得超过522个赞
知道小有建树答主
回答量:357
采纳率:0%
帮助的人:168万
展开全部
主要用一些算法实现
private void button_Click(object sender, EventArgs e)
{
int width = this.pictureBox1.Image.Width;
int heigh = this.pictureBox1.Image.Height;

Bitmap oldbmp = (Bitmap)this.pictureBox1.Image;

Bitmap newbmp = new Bitmap(width, heigh);

Color pixel;

for (int x = 0; x < width; x++)
{
for (int y = 0; y < heigh; y++)
{
int r, g, b,result;
//获取原图中该像素点的三原色对象
pixel = oldbmp.GetPixel(x, y);
r = pixel.R;
g = pixel.G;
b = pixel.B;

result=(r+b+g)/3;

//设置新图片中该像素点的三原色
newbmp.SetPixel(x, y, Color.FromArgb(result, result, result));

}
}
this.pictureBox1.Image = newbmp;

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式