WPF 表单上有一个 System.Windows.Controls.Image,它有一个位图。如何image1.Source
通过其坐标获得某个像素的颜色?
问问题
586 次
1 回答
1
看一下Bitmap.GetPixel(x, y)方法:
参数
x 类型:System.Int32 要检索的像素的 x 坐标。y 类型:System.Int32 要检索的像素的 y 坐标。
返回值
类型:System.Drawing.Color 表示指定像素颜色的 Color 结构。
于 2012-05-02T13:47:04.717 回答