2018年1月15日

C# 获取每一个像素点的RGB

摘要: int x, y; x = e.X; y = e.Y; Color pixel = MyImage.GetPixel(x, y); byte R = pixel.R; byte G = pixel.G; byte B = pixel.B; pixel_R.Text = R.ToString(); p 阅读全文

posted @ 2018-01-15 13:46 Mr_Mo 阅读(871) 评论(0) 推荐(0) 编辑

导航