gpt4 book ai didi

python - 字符串格式为 base64 到 base64 对象

转载 作者:行者123 更新时间:2023-11-28 17:06:14 25 4
gpt4 key购买 nike

从发布请求中,我收到了一个 JSON 格式的 base64。问题是我不能只将文件类型从字符串更改为 base64,因为它已经格式化为 base64。需要 base64 将其转换回图像。

json_data = request.get_json(force=True)
img = json_data['img']
print(img)
with open("imageToSave.png", "wb") as fh:
fh.write(base64.decodebytes(img))

最佳答案

为了解码它,添加将字符串解码为 base64 的第三行

json_data = request.get_json(force=True)
img = json_data['img']
imgdata = base64.b64decode(img)
filename = 'upload/newimg.jpg' # I assume you have a way of picking unique filenames
with open(filename, 'wb') as f:
f.write(imgdata)

关于python - 字符串格式为 base64 到 base64 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50799076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com