编程语言
首页 > 编程语言> > Python提取图片中的英文并写入txt

Python提取图片中的英文并写入txt

作者:互联网

蓝多多自己有这个需求就记录一下,仅是英文哈!

一个非常简单基础的代码,只有六行:

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)

写入结果:

标签:..,Python,写入,content,pytesseract,txt,open
来源: https://blog.csdn.net/qq_43554335/article/details/121383943