Bitmap bmp = new Bitmap("filename"); //to get the pixel color Color c= bmp.GetPixel(50,50); //to set the color of the pixel bmp.SetPixel(50, 50, Color.Green);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)