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检测鼠标单击后截图代码
版权声明:本文标题:python检测鼠标单击后截图代码 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1732351687h1533254.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论