python 获取鼠标点击的实时位置案例
Python 获取鼠标点击时的x、y坐标位置
PyAutoGUI是一个Python库,它提供了一些用于控制鼠标、键盘和屏幕的函数。
安装第三方库 pyautogui
pip install pyautogui
# 案例获取鼠标的位置,方便复制我们定位的鼠标坐标点到代码中
import pyautogui
import time
# 获取鼠标位置
def get_mouse_positon():
time.sleep(5) # 准备时间
print('开始获取鼠标位置')
try:
for i in range(10):
# Get and print the mouse coordinates.
x, y = pyautogui.position()
positionStr = '鼠标坐标点(X,Y)为:{},{}'.format(str(x).rjust(4), str(y).rjust(4))
pix = pyautogui.screenshot().getpixel((x, y)) # 获取鼠标所在屏幕点的RGB颜色
positionStr += ' RGB:(' + str(pix[0]).rjust(3) + ',' + str(pix[1]).rjust(3) + ',' + str(pix[2]).rjust(
3) + ')'
print(positionStr)
time.sleep(0.5) # 停顿时间
except:
print('获取鼠标位置失败')
if __name__ == "__main__":
get_mouse_positon()
运行上述代码,当你点击屏幕的任意位置时,程序将会输出鼠标点击时的x、y坐标位置
pyautogui 其他常用函数
moveTo(x, y) # 将鼠标移动到指定的 x y 坐标 .
moveRel(xOffset, yOffset) # 相对于当前位置移动鼠标 .
dragTo(x, y) # 按下左键移动鼠标 .
dragRel(xOffset, yOffset) # 按下左键 , 相对于当前位置移动鼠标 .
click(x, y, button) # 模拟点击 (默认是左键) .
rightClick() # 模拟右键点击。
middleClick() # 模拟中键点击。
doubleClick() # 模拟左键双击。
mouseDown(x, y, button) # 模拟在 x、y 处按下指定鼠标按键。
mouseUp(x, y, button) # 模拟在 x、y 处释放指定键。
scroll(units) # 模拟滚动滚轮。正参数表示向上滚动, 负参数表示向下滚动。
typewrite(message) # 键入给定消息字符串中的字符。
typewrite([key1, key2, key3]) # 键入给定键字符串。
press(key) # 按下并释放给定键。
keyDown(key) # 模拟按下给定键。
keyUp(key) # 模拟释放给定键。
hotkey([key1, key2, key3]) # 模拟按顺序按下给定键字符串, 然后以相反的顺序释放。
screenshot() # 返回屏幕快照的 Image 对象