Function GetScreenPixel(ByVal pt As Point) As Color
Using bmp As New Bitmap(1, 1)
Using g As Graphics = Graphics.FromImage(bmp)
g.CopyFromScreen(pt, Point.Empty, New Size(1, 1))
Return bmp.GetPixel(0, 0)
End Using
End Using
End Function
'프로그래밍언어 > VB.NET' 카테고리의 다른 글
네이버 웹툰 다운 (0) | 2014.05.19 |
---|---|
ReadWritingMemory (0) | 2014.05.17 |
마우스좌표 가져오기 (0) | 2014.03.28 |
문자열로 Sub 호출하기 (0) | 2014.03.23 |
변수이름으로 컨트롤 접근 (0) | 2014.03.19 |