如何使用 stepic.encode()

How to use stepic.encode()

from PIL import Image
import stepic
img = Image.open ('a.png')
img2 = stepic.encode(img, 'hello world')
img2.show()

这里的代码给出了以下错误:

TypeError: unsupported operand type(s) for &: 'str' and 'int'

Python 使用 3.6。

有同样的问题..我在Python 3.6.6上测试过 只需更改下面的行 来自:

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

收件人:

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

您需要将 data/text 作为二进制文件传递