我正在搜索此网站上的帖子,我发现了这个: How do I get the colour of a pixel at X,Y using c#?
这种方法对于尝试在表单内部获取像素的颜色仍然有效吗?
如果没有,那么在2D颜色值数组中实际“映射”表单的方法是什么?
例如,我有一个Tron游戏,我想检查一下轻型摩托车的下一个位置是否已经包含另一个轻型摩托车。
谢谢, 伊恩
答案 0 :(得分:3)
using System;
using System.Drawing;
using System.Runtime.InteropServices;
sealed class Win32
{
[DllImport("user32.dll")]
static extern IntPtr GetDC(IntPtr hwnd);
[DllImport("user32.dll")]
static extern Int32 ReleaseDC(IntPtr hwnd, IntPtr hdc);
[DllImport("gdi32.dll")]
static extern uint GetPixel(IntPtr hdc, int nXPos, int nYPos);
static public System.Drawing.Color GetPixelColor(int x, int y)
{
IntPtr hdc = GetDC(IntPtr.Zero);
uint pixel = GetPixel(hdc, x, y);
ReleaseDC(IntPtr.Zero, hdc);
Color color = Color.FromArgb((int)(pixel & 0x000000FF),
(int)(pixel & 0x0000FF00) >> 8,
(int)(pixel & 0x00FF0000) >> 16);
return color;
}
}
使用此功能,您可以执行以下操作:
public static class ControlExts
{
public static Color GetPixelColor(this Control c, int x, int y)
{
var screenCoords = c.PointToScreen(new Point(x, y));
return Win32.GetPixelColor(screenCoords.X, screenCoords.Y);
}
}
因此,在您的情况下,您可以这样做:
var desiredColor = myForm.GetPixelColor(10,10);
答案 1 :(得分:0)
您可以使用GetPixel方法获取颜色。
e.g。
//从图像文件创建一个Bitmap对象。 位图myBitmap =新位图(“Grapes.jpg”);
//获取myBitmap中像素的颜色。 Color pixelColor = myBitmap.GetPixel(50,50);
这可能是针对细节click here
的不同情况的另一种方式 using System;
using System.Drawing;
using System.Runtime.InteropServices;
sealed class Win32
{
[DllImport("user32.dll")]
static extern IntPtr GetDC(IntPtr hwnd);
[DllImport("user32.dll")]
static extern Int32 ReleaseDC(IntPtr hwnd, IntPtr hdc);
[DllImport("gdi32.dll")]
static extern uint GetPixel(IntPtr hdc, int nXPos, int nYPos);
static public System.Drawing.Color GetPixelColor(int x, int y)
{
IntPtr hdc = GetDC(IntPtr.Zero);
uint pixel = GetPixel(hdc, x, y);
ReleaseDC(IntPtr.Zero, hdc);
Color color = Color.FromArgb((int)(pixel & 0x000000FF),
(int)(pixel & 0x0000FF00) >> 8,
(int)(pixel & 0x00FF0000) >> 16);
return color;
}
}
答案 2 :(得分:0)
您可以使用您引用的问题中的方法从表单中获取像素的颜色,如果像素首先位于表单的范围内,您只需要计算出来,并且您需要将表格中的坐标转换为屏幕坐标,反之亦然。
编辑:经过一番思考后,如果有人在表单顶部打开另一个窗口,那就没有用了!我认为最好找出一种不同的做法...