from PIL import Image import pytesseract image = 'PATH/TO/IMAGE' text = pytesseract.image_to_string(Image.open(image), lang="eng") print(text) # Code From ...
確定! 回上一頁