admin 管理员组

文章数量: 887007

python检测鼠标单击后截图代码

python小工具

做一个项目需要在单击屏幕的时候记录屏幕变化,于是想到用python做一个工具来实现检测鼠标点击后全屏截图。
新建项目main.py
在pycharm里导入库,Pillow,pynput。
用tkinter获取完整屏幕大小,Pillow来截图,pynput检测鼠标按下事件。

import tkinter
from PIL import ImageGrab
from pynput import mouse
win = tkinter.Tk()
#获取屏幕尺寸
width = win.winfo_screenwidth()
height = win.winfo_screenheight()
#点击事件
def on_click(x, y, button, pressed):#鼠标点击屏幕左1/4触发截图if pressed and x<width/4:#截屏img = ImageGrab.grab(bbox=(0, 0, width, height))img.save('full-screen.jpg')else:passwith mouse.Listener(on_click=on_click) as listener:listener.join()

可以实现点击屏幕左侧1/4位置能截图全屏并保留在main.py同名目录下,
优化下加入系统当前时间,将文件用时间戳命名。
导入库datetime。这样可以记录多个而不会覆盖。

import tkinter
from PIL import ImageGrab
from pynput import mouse
from datetime import datetime,time
win = tkinter.Tk()
#获取屏幕尺寸
width = win.winfo_screenwidth()
height = win.winfo_screenheight()
#点击事件
def on_click(x, y, button, pressed):#获取当前时间current_time = datetime.now().time()# 鼠标点击屏幕左1/4触发截图if pressed and x<width/4:#截屏img = ImageGrab.grab(bbox=(0, 0, width, height))img.save(f'{current_time.hour}-{current_time.minute}-{current_time.second}.jpg')else:passwith mouse.Listener(on_click=on_click) as listener:listener.join()

最后优化下加入时间段,在main.py同名目录下建立time.txt,在里面写入开始时间和结束时间,txt文件内容如下:
10:01-23:55
优化代码获取txt文件内容做开始和结束时间参考。最后代码如下:

import tkinter
from PIL import ImageGrab
from pynput import mouse
from datetime import datetime,time
win = tkinter.Tk()
#获取屏幕尺寸
width = win.winfo_screenwidth()
height = win.winfo_screenheight()
#获取文件设定时间
with open('time.txt',"r") as f:    #设置文件对象SET_TIME = f.read()
#规定时间
TIME_START=time(int(SET_TIME[0:2]),int(SET_TIME[3:5]))
TIME_END=time(int(SET_TIME[-5:-3]),int(SET_TIME[-2:]))
#点击事件
def on_click(x, y, button, pressed):#获取当前时间current_time = datetime.now().time()# 规定时间内点击屏幕左1/4触发截图if pressed and x < width / 4 and TIME_START <= current_time <= TIME_END:#截屏img = ImageGrab.grab(bbox=(0, 0, width, height))img.save(f'{current_time.hour}-{current_time.minute}-{current_time.second}.jpg')else:passwith mouse.Listener(on_click=on_click) as listener:listener.join()

测试通过后,用pyinstaller打包成exe,后期通过修改time.txt里面的时间来规定单击截屏。
生成的照片会在main.py同名目录下,方便检查。

本文标签: python检测鼠标单击后截图代码