■ GetWindowRect 함수를 사용해 윈도우 사각형을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
import win32gui windowHandle = win32gui.GetForegroundWindow() windowRectangle = win32gui.GetWindowRect(windowHandle) |
※ pip install pywin32 명령을 실행했다.
■ GetWindowRect 함수를 사용해 윈도우 사각형을 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 |
import win32gui windowHandle = win32gui.GetForegroundWindow() windowRectangle = win32gui.GetWindowRect(windowHandle) |
※ pip install pywin32 명령을 실행했다.