wpf 获取所有像素点坐标
时间: 2023-04-01 17:04:45 浏览: 107
获取图像某点坐标
可以使用 WriteableBitmap 类来获取 WPF 中所有像素点的坐标。具体实现可以参考以下代码:
WriteableBitmap bitmap = new WriteableBitmap(imageSource);
int width = bitmap.PixelWidth;
int height = bitmap.PixelHeight;
for (int x = ; x < width; x++)
{
for (int y = ; y < height; y++)
{
Color color = bitmap.GetPixel(x, y);
// 在这里可以对每个像素点的颜色进行处理
}
}
阅读全文