蓝多多自己有这个需求就记录一下,仅是英文哈!
一个非常简单基础的代码,只有六行:
import pytesseract from PIL import Image filename = '../source/write.txt' # 使用pytesseract提取并写入txt content = pytesseract.image_to_string(Image.open('../source/test.png')) with open(filename,'a') as f: # 'a'即append,表示在原来文件内容后继续写数据 f.write(content)
写入结果: