[파이썬] pywin32를 이용해 윈도우 화면에 그리기
윈도우 화면에 강조를 위한 그리기 방법입니다. requirements pip install pywin32 draw.py import win32gui, win32api class draw: def __init__(self): hwnd = win32gui.GetDesktopWindow() self.hdc = win32gui.GetDC(hwnd) def rect(self, x, y, w, h, color=False): # color = (255,0,0) int type color = win32api.RGB(0,255,0) if not color else win32api.RGB(color[0], color[1], color[2]) for i in range(x, x + w): win32gui.SetPixel(s..
2022. 6. 2.