提取图片中的文字

from PIL import Image
import pytesseract

image = Image.open('demo.png')
content = pytesseract.image_to_string(image, lang='chi_sim')
print('demo图片中的文字内容提取出为:', content)
posted @ 2020-11-03 22:13  疯狂列表推导式  阅读(88)  评论(0编辑  收藏  举报