小编Ore*_*iow的帖子

C# 从另一个窗口获取像素颜色

我想从另一个窗口获取像素颜色。我的代码是:

  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;
      }
   }
Run Code Online (Sandbox Code Playgroud)

问题是此代码正在扫描整个屏幕,这不是我想要的。这个想法是修改代码以根据另一个应用程序屏幕边界扫描像素颜色。也许有 FindWindow 或 GetWindow 的东西?提前致谢。

c# getpixel

5
推荐指数
1
解决办法
5393
查看次数

标签 统计

c# ×1

getpixel ×1