0

使用 img2pdf 库时出现上述错误,我的代码如下所示,这也是引发上述错误的代码行

pdf = img2pdf.convert('maskedImage'+ filename + '.jpeg')

其中文件名是在使用烧瓶时从用户以 url 形式获取的字符串。

这就是使用 opencv 保存蒙版图像的方式

cv2.imwrite("maskedImage" + filename + ".jpeg", maskedImage)
4

1 回答 1

0

Actually you have to convert it to bytes. You can do it like this.

bytes = string.encode(encoding='UTF-8')

Also you can check it out the link for more information about that.

于 2021-04-10T08:53:29.493 回答