我想从屏幕上找到特定的像素坐标。这是我的代码(我是超级新手,我今天刚开始使用C#:
static string GetPixel(int X, int Y)
{
Point position = new Point(X, Y);
var bitmap = new Bitmap(1, 1);
var graphics = Graphics.FromImage(bitmap);
graphics.CopyFromScreen(position, new Point(0, 0), new Size(1, 1));
var _Pixel = bitmap.GetPixel(0, 0);
return "0x" + _Pixel.ToArgb().ToString("x").ToUpper().Remove(0, 2);
//it returns a pixel color in a form of "0xFFFFFF" hex code
//I had NO idea how to convert it to hex code so I did that :P
}
static void Main()
{
// for x = 1 to screen width...
for (int x = 1; x <= Screen.PrimaryScreen.Bounds.Bottom; x++)
{
// for x = 1 and y = 1 to screen height...
for (int y = 1; y <= Screen.PrimaryScreen.Bounds.Height; y++)
{
string pixel = GetPixel(x, y);
if (pixel == "0x007ACC") //blue color
{
MessageBox.Show("Found 0x007ACC at: (" + x + "," + y + ")");
break; //exit loop
}
}
}
}
编辑: 这是运行此脚本时出现的错误:
类型'System.ArgumentOutOfRangeException'的未处理异常 发生在mscorlib.dll
附加信息:索引和长度必须指代某个位置 在字符串
中
我有AutoIt的经验,这是我与C#^^的第一天 此致
答案 0 :(得分:2)
欢迎来到SO。
大多数坐标和其他东西都是基于0的,就像在数组中一样。
话虽这么说,最好使用Bounds的X / Y / Width和Height属性作为循环:
var bounds = Screen.PrimaryScreen.Bounds;
for (int x = bounds.X; x < bounds.Width; x++) {
for(int y = bounds.Y; y < bounds.Height; y++) {
..
将ARGB值转换为十六进制的正确方法是使用string.Format()方法:
string hex = string.Format("0x{0:8x}", argb);
编辑:显然Graphics.CopyFromScreen
泄漏句柄就像没有明天一样,这会导致在没有更多句柄可用时抛出奇怪的异常(source)
您的方案的快速解决方法可能是捕获整个屏幕一次,然后在位图中搜索,即Graphics.CopyFromScreen(new Position(0, 0), new Position(0, 0), new Size(bounds.Width, bounds.Height));
不幸的是,这并没有在.Net 4.0中修复(不知道4.5),所以唯一合适的解决方案似乎是P / Invoke本机GDI函数,如here所述。