오보에블로그
[Python3] 마우스 입력 좌표 확인 하기 본문
728x90
참고 :
https://webnautes.tistory.com/1219
https://blankspace-dev.tistory.com/416
# pyautogui install
# pip install pyautogui
import pyautogui
# 현재 모니터 사이즈 크기 반환
screenWidth, screenHeight = pyautogui.size()
print('현재 모니터 사이즈 크기 반환 > 너비:{0}, 높이:{1}'.format(screenWidth, screenHeight))
# 현재 마우스의 위치 반환
currentMouseX, currentMouseY = pyautogui.position()
print('현재 마우스 위치 반환 > x좌표: {0}, y좌표 {1}'.format(currentMouseX, currentMouseY))
# x,y 좌표가 스크린 안에 위치해 있는지 확인
print(pyautogui.onScreen(1280,800)) #False
print(pyautogui.onScreen(3,4)) #True
728x90
'STEADYSTUDY > Etc' 카테고리의 다른 글
[Python3] 프로그램 축소기 (0) | 2019.07.08 |
---|---|
2447_별찍기 - 10 (0) | 2018.02.06 |
자바실습 Week10 - FILE IO (0) | 2017.11.22 |
Collection & Generics (0) | 2017.11.16 |
추상클래스 (abstract class) 사용 (0) | 2017.11.08 |