【python GUI】使用tkinter在Linux下实现自定位置截图并识别当中的文字
1、因为在Linux中PIL.Image.ImageGrab无法使用,所以我找了一个代替的模块:pyscreenshot
安装:
pip3 install pyscreenshot
用法: 跟PIL中一样
import pyscreenshot as ImageGrab
# fullscreen
im=ImageGrab.grab()
im.show()
# part of th...
原创
2018-08-21 10:05:17 ·
1488 阅读 ·
2 评论