Posted in Python onOctober 05, 2021
前言
最近想做个小玩意,需要在mac端实现屏幕截图,搜了下网上中文资源都比较老旧,于是查了下,发现有些好用的Python库已经支持Mac 以及 Linux 了,特此记录
pyscreenshot
github地址
github地址https://github.com/Zjvngvn/pyscreenshot里面有安装和用例说明
Python 安装
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")
截图效果
在电脑端截图游戏画面:
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注三水点靠木的更多内容!
Python 实现Mac 屏幕截图详解
- Author -
TEDxPY- Original Sources -
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@