如何将字符串从image_to_string复制到剪贴板

时间:2018-07-08 08:41:12

标签: python string

我正在一个项目中,我需要将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)

任何对此的帮助将不胜感激。提前致谢 :)

0 个答案:

没有答案