2
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。

4

1 回答 1

1

有同样的问题..我在 Python 3.6.6 上进行了测试,只需将以下行更改为:

img2 = stepic.encode(img, 'hello world')

至:

img2 = stepic.encode(img, b'hello world')

你需要将你的数据/文本作为二进制传递

于 2018-12-12T14:04:17.633 回答