gpt4 book ai didi

python - 无法解码 base64 编码的图像

转载 作者:行者123 更新时间:2023-12-04 15:22:44 25 4
gpt4 key购买 nike

我是 python 的新手。我的任务是构建一个获取图像并返回图像的 API 端点。所以,我选择了 flask 来完成我的工作。

我关注了这个 SO 问题 - Can a flask-based API return a file用于上传图像文件的 API 端点。

代码如下:

from flask import Flask, render_template , request , jsonify
from PIL import Image
import os , io , sys
import numpy as np
import cv2
import base64

app = Flask(__name__)

start_point = (0, 0)
end_point = (110, 110)
color = (255, 0, 0)
thickness = 2

@app.route('/image' , methods=['POST'])
def mask_image():
file = request.files['image'].read()
npimg = np.fromstring(file, np.uint8)
img = cv2.imdecode(npimg,cv2.IMREAD_COLOR)
img = Image.fromarray(img.astype("uint8"))
rawBytes = io.BytesIO()
img.save(rawBytes, "png")
rawBytes.seek(0)
img_base64 = base64.b64encode(rawBytes.read())
return jsonify({'status':str(img_base64)})


if __name__ == '__main__':
app.run(debug = True)

然后我使用 python requests file upload 向 API 发送了一个请求.

但我无法解码 base64 响应。我试过的代码

import requests
import base64

files = {'image': open('image.png','rb')}
r = requests.post("http://localhost:5000/image", files=files)
print(base64.decodestring(r.text))

但是报错

---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
~/anaconda3/envs/py37/lib/python3.7/base64.py in _input_type_check(s)
509 try:
--> 510 m = memoryview(s)
511 except TypeError as err:

TypeError: memoryview: a bytes-like object is required, not 'str'

The above exception was the direct cause of the following exception:

TypeError Traceback (most recent call last)
<ipython-input-192-e8ba5f9daae3> in <module>
----> 1 base64.decodestring(r.text)

~/anaconda3/envs/py37/lib/python3.7/base64.py in decodestring(s)
552 "use decodebytes()",
553 DeprecationWarning, 2)
--> 554 return decodebytes(s)
555
556

~/anaconda3/envs/py37/lib/python3.7/base64.py in decodebytes(s)
543 def decodebytes(s):
544 """Decode a bytestring of base-64 data into a bytes object."""
--> 545 _input_type_check(s)
546 return binascii.a2b_base64(s)
547

~/anaconda3/envs/py37/lib/python3.7/base64.py in _input_type_check(s)
511 except TypeError as err:
512 msg = "expected bytes-like object, not %s" % s.__class__.__name__
--> 513 raise TypeError(msg) from err
514 if m.format not in ('c', 'b', 'B'):
515 msg = ("expected single byte elements, not %r from %s" %

TypeError: expected bytes-like object, not str

如何解码图像?

最佳答案

标记的答案是我自己的。因此,我会提供答案。

其中一位用户@ToxicCode 已经给出了99%的答案。但这里有一个问题。该脚本将响应作为字节字符串发送到一个字符串中,如下所示。

"b'iVBORw0KGgoAAAANSUhEUgAABXYAAAOOCAIAAAAru93tAAEAAElEQVR4nOz9eZRk+V3ffX5+98a+ZkbutbZ2gZAx6DFgsEGHHRtrsC0xFgezGGg3to8H2+NlQGjmSAI/D4wfGD/40AiZRTDgBwkMGI9AwjoCzGLZgLHYZEmou5bMjFwiMjPWu37nj4iqzOqur
...
..

字节 b 已经存在于字符串中。因此,如果您遵循@ToxicCode 不注意这一点,您将面临错误。因此,作为一种糟糕的方法,您可以使用 ast.literal_eval 转换为字符串,然后遵循 @ToxicCode 代码。

重要提示:不要在生产服务器中使用 ast.literal_eval()。相应地更改实现。

import ast
import requests
import base64

files = {'image': open('image.png','rb')}
r = requests.post("http://localhost:5000/image", files=files)
data = ast.literval_eval(r.json()['status'])
print(base64.b64decode(data))

关于python - 无法解码 base64 编码的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62956953/

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