且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在C#中查找图像中的像素坐标

更新时间:2023-01-24 14:42:29

此代码可能会帮助

this code might help

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);



祝你好运!



good luck!