最近想做个小玩意,需要在mac端实现屏幕截图,搜了下网上中文资源都比较老旧,于是查了下,发现有些好用的Python库已经支持Mac 以及 Linux 了,特此记录
github地址https://github.com/ponty/pyscreenshot/tree/3.0里面有安装和用例说明
pip install pyscreenshot
屏幕部分区域截图(x1,y1)左上点、(x2,y2)右下点截图:
import pyscreenshot as ImageGrab
# part of the screen
im = ImageGrab.grab(bbox=(0, 90, 2048, 1230)) # X1,Y1,X2,Y2
# save image file
im.save("box.png")
在电脑端截图游戏画面: