我正在一个项目中,我需要将image_to_string的输出复制到剪贴板中。我使用的是Mac,并且已经搜索并尝试了以下代码,但它们对我而言不起作用
from PIL import Image
from pytesseract import image_to_string
import os
def addtoclipboard(text):
command = 'echo ' + text.strip() + '| pbcopy'
os.system(command)
string=image_to_string(Image.open('question.png'))
addtoclipboard(string)
这无法解决,并且错误显示为:
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2018' in position 91: ordinal not in range(128)
任何对此的帮助将不胜感激。提前致谢 :)