mathiasimmer

Results 1 issues of mathiasimmer

I got this simple example: ```` from PIL import Image from pyocr import pyocr py_img = Image.open('text.png') for tool in pyocr.get_available_tools(): print("Using pyocr tool '%s'" % (tool.get_name())) print(tool.image_to_string(py_img)) ```` Where...

bug
to study