TypeError:预期的类似字节的对象,而不是str

时间:2018-11-16 15:17:21

标签: javascript python base64 angular6

我知道这个问题已经问了很多遍了,但是请问一下我的问题。

我正在将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的新手。

1 个答案:

答案 0 :(得分:0)

base64.decodebytes仅接受字节数组,而使用base64.b64decode则也接受字符串