如何使用c#获取X,Y处像素的颜色?
至于结果,我可以将结果转换为颜色格式I. 需要。我确信有一个API调用。
对于显示器上任何给定的X,Y,我想得到它的颜色 像素。
答案 0 :(得分:37)
要从Pinvoke.net获取屏幕此处代码的像素颜色:
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;
}
}
答案 1 :(得分:10)
图片有Bitmap.GetPixel
...是你所追求的吗?如果没有,你能说出你的x,y值吗?在控制?
请注意,如果您执行对图像意味着什么,并且您希望获得 lot 像素,并且您不介意使用不安全的代码,那么{{ 3}}比对GetPixel
的大量调用快得多。
答案 2 :(得分:2)
除了P / Invoke解决方案之外,您还可以使用Graphics.CopyFromScreen将图像数据从屏幕获取到Graphics对象中。但是,如果您不担心可移植性,我会推荐P / Invoke解决方案。
答案 3 :(得分:1)
对于WPF中的参考:(使用PointToScreen)
System.Windows.Point position = Mouse.GetPosition(lightningChartUltimate1);
if (lightningChartUltimate1.ViewXY.IsMouseOverGraphArea((int)position.X, (int)position.Y))
{
System.Windows.Point positionScreen = lightningChartUltimate1.PointToScreen(position);
Color color = WindowHelper.GetPixelColor((int)positionScreen.X, (int)positionScreen.Y);
Debug.Print(color.ToString());
...
...
public class WindowHelper
{
// ******************************************************************
[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.Windows.Media.Color GetPixelColor(int x, int y)
{
IntPtr hdc = GetDC(IntPtr.Zero);
uint pixel = GetPixel(hdc, x, y);
ReleaseDC(IntPtr.Zero, hdc);
Color color = Color.FromRgb(
(byte)(pixel & 0x000000FF),
(byte)((pixel & 0x0000FF00) >> 8),
(byte)((pixel & 0x00FF0000) >> 16));
return color;
}
答案 4 :(得分:0)
如果有人对此有麻烦,并且没有一种解决方案能正常工作(对我而言是如此),而您在WPF中,这就是我的工作方式:-)。
[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);
public static void getColor()
{
IntPtr hdc = GetDC(IntPtr.Zero);
uint pixel = GetPixel(hdc, Cursor.Position.X, Cursor.Position.Y);
ReleaseDC(IntPtr.Zero, hdc);
System.Drawing.Color color = System.Drawing.Color.FromArgb((int)pixel);
Console.WriteLine("Color is {0}", color);
}