[C#] 픽셀서치 PixelSearch
화면상의 픽셀을 얻기 위해서 BitBlt로 (1,1) 크기의 픽셀을 먼저 얻어봅시다. // ex ) GetColorAt(pos); /* [DllImport("gdi32.dll", CharSet = CharSet.Auto, SetLastError = true, ExactSpelling = true)] public static extern int BitBlt(IntPtr hDC, int x, int y, int nWidth, int nHeight, IntPtr hSrcDC, int xSrc, int ySrc, int dwRop); 추가하셔야 bitblt사용가능 */ using System.Drawing; public Color GetColorAt(Point location) { Bitmap screenPix..
2017. 8. 25.