python显示屏幕点的坐标和颜色(pyautogui)
摘要:#encoding=utf-8 import pyautogui from PIL import ImageGrab print("将光标移到左上角0,0坐标点停止运行程序") while True: # 获取当前光标位置 x, y = pyautogui.position() px = Image
阅读全文
posted @ 2023-02-28 15:43