标签: python image-processing python-imaging-library
基本上,我想使用Pillow Python3将文字写到图像上。在将文本写入图像之前/之后,是否可以做一些事情或做一些预处理,使我无需使用Tesseract之类的东西就能读回文本?
答案 0 :(得分:0)
为此使用pytesser
pytesser
from pytesser import * from PIL import Image image = Image.open(filename) print(image_to_string(image))