gpt4 book ai didi

python - 将图片作为字符串发送并解码

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

<分区>

我有 Python2.7 的客户端,应用程序没有机会将文件发送到服务器。所以我将图片作为字符串发送。

with open(path, "rb") as imageFile:
str = b64encode(imageFile.read())

在服务器上我尝试解码但失败了

pic = request.POST.get('picture')
pic = bytes(pic)
fh = open("d:/imageToSave.jpg", "wb")
fh.write(pic)
fh.close()

我应该怎么做才能解决这个问题?

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