需要使用 mss witchout 保存和打开图像才能“优化”这里的任务是我的代码,对不起我的英语不好。
from PIL import Image
import pytesseract
import mss
import mss.tools
with mss.mss() as sct:
monitor = {'top': 171, 'left': 1090, 'width': 40, 'height': 17}
output = 'capture.png'.format(**monitor)
sct_img = sct.grab(monitor)
mss.tools.to_png(sct_img.rgb, sct_img.size, output=output)
text = pytesseract.image_to_string(Image.open('capture.png'))
print(text)