欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#图像亮度调整的方法

程序员文章站 2023-01-22 12:46:25
本文实例讲述了c#图像亮度调整的方法。分享给大家供大家参考。具体如下: //定义数字图象处理之(亮度调整函数) private static bitmap br...

本文实例讲述了c#图像亮度调整的方法。分享给大家供大家参考。具体如下:

//定义数字图象处理之(亮度调整函数)
private static bitmap brightnessp(bitmap a, int v)
{
 system.drawing.imaging.bitmapdata bmpdata = a.lockbits(new rectangle(0, 0, a.width, a.height), system.drawing.imaging.imagelockmode.readwrite, system.drawing.imaging.pixelformat.format24bpprgb);
 int bytes = a.width * a.height * 3;
 intptr ptr = bmpdata.scan0;
 int stride = bmpdata.stride;
 unsafe
 {
  byte* p = (byte*)ptr;
  int temp;
  for (int j = 0; j < a.height; j++)
  {
   for (int i = 0; i < a.width * 3; i++,p++)
   {
   temp = (int)(p[0] + v);
   temp = (temp > 255) ? 255 : temp < 0 ? 0 : temp;
   p[0] = (byte)temp;
   }
   p += stride - a.width * 3;
  }
 }
 a.unlockbits(bmpdata);
 return a;
}

希望本文所述对大家的c#程序设计有所帮助。