python屏幕截图
from PIL import ImageGrab
import os
import time
#屏幕截图
def screen_capture():
current_name=time.strftime('%Y-%m-%d',time.localtime(time.time()))
img_path="d:\\"+current_name +'bug.jpg'
im = ImageGrab.grab()
im.save(img_path)
return img_path
如没有ImageGrab包,请先自己安装,下载地址:
http://www.pythonware.com/products/pil/
该文章对你有帮助吗,求分享转发: 分享到QQ空间 分享给QQ好友