我知道这个问题已经问了很多遍了,但是请问一下我的问题。
我正在将base64
图像数据从角度发送到 python flask ,但是当我在烧瓶服务器(python3)上处理base64
数据时,它给了我错误
TypeError: expected bytes-like object, not str
我的Javascript代码是:
window['__CANVAS'].toDataURL("image/png");
上一行的输出是:
"data:image/png;base64,iVBORw0KGgoAAAANSUhEUg....."
我在flask服务器上收到的数据与字符串相同。
使用以上64位数据的python服务器上的代码为:
def convert_to_image(base64_code):
image_64_decode = base64.decodebytes(base64_code)
image_result = open('baseimage.jpg', 'wb')
image_result.write(image_64_decode)
img_rgb = cv2.imread('baseimage.jpg')
return img_rgb
然后给出以下错误跟踪:
File "/home/shubham/py-projects/DX/Web/app/base64toimage.py", line 10, in convert_to_image
image_64_decode = base64.decodebytes(base64_code)
File "/usr/lib/python3.5/base64.py", line 552, in decodebytes
_input_type_check(s)
File "/usr/lib/python3.5/base64.py", line 521, in _input_type_check
raise TypeError(msg) from err
TypeError: expected bytes-like object, not str
如果我使用此函数转换图像,则python函数上面的功能正常
import base64
with open("t.png", "rb") as imageFile:
str = base64.b64encode(imageFile.read())
print str
请帮助我解决这个问题?我是python的新手。
答案 0 :(得分:0)
base64.decodebytes
仅接受字节数组,而使用base64.b64decode
则也接受字符串