from PIL import Image
import stepic
img = Image.open ('a.png')
img2 = stepic.encode(img, 'hello world')
img2.show()
这里的代码给出了以下错误:
TypeError:&:'str'和'int'不支持的操作数类型
使用 Python 3.6。
from PIL import Image
import stepic
img = Image.open ('a.png')
img2 = stepic.encode(img, 'hello world')
img2.show()
这里的代码给出了以下错误:
TypeError:&:'str'和'int'不支持的操作数类型
使用 Python 3.6。