var bmp = new Bitmap(@"I:\154800137443598227.png");
var s = 0;
for(int h = 0; h < bmp.Height; h++)
{
for(int w = 0; w < bmp.Width; w++)
{
s += w + h * 80;
var p = bmp.GetPixel(w, h);
bmp.SetPixel(w, h, Color.FromArgb(255, (byte)(p.R + s), (byte)((p.G - s) & 0xff), (byte)(p.B + s)));
}
}
bmp.Save("n.bmp");