我有一个Python脚本,它通过POST-Request将图像发送到Rails API。图像是Base64编码,然后是UTF-8编码。否则请求错误,并出现以下错误:
TypeError: Object of type 'bytes' is not JSON serializable
Python脚本如下所示:
with open('C:\\Users\\maforlkzus\\Desktop\\test.jpg', 'rb') as f:
encoded_image = base64.b64encode(f.read())
image = encoded_image.decode('utf-8')
payload = {
'name': 'testimage',
'image': image,
}
r = requests.post(url, data=json.dumps(payload), headers={'Content-type': 'application/json'})
在我的Rails应用程序中,我想创建一个保存图像的临时文件。因此,我必须对图像进行base64解码,但由于UTF-8编码,这不起作用。我的Rails控制器如下所示:
1 def decode_file
2 temp_file = Tempfile.new('test')
3 testfile = self.image.force_encoding('utf-8')
4 temp_file.write(Base64.decode64(testfile))
5 self.file = temp_file
6 end
>>> Encoding::UndefinedConversionError ("\xFF" from ASCII-8BIT to UTF-8): line 4 in decode_file
如果我尝试像这样解码它,我会得到同样的错误:
def decode_file
temp_file = Tempfile.new('test')
temp_file.write(Base64.decode64(self.image))
self.file = temp_file
end
我该如何解决这个问题?在发送之前是否必须对图像进行不同的编码,或者是API代码中的问题?
答案 0 :(得分:2)
您可以将编码指定为BINARY
Tempfile使用:
temp_file = Tempfile.new('test', :encoding => 'binary')