1 Star 0 Fork 0

邪心残/picture_transfer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.py 974 Bytes
一键复制 编辑 原始数据 按行查看 历史
frankevil 提交于 2023-03-24 18:13 . 代码
from flask import Flask, jsonify, request
from util import decode_image, handle_img
app = Flask(__name__)
@app.route("/img_receive", methods=["POST"])
def img_receive():
try:
body_json = request.get_json()
print(f"接收到参数:{body_json}")
images = []
for index in range(0, 10):
img = body_json[f'image_{index}']
if not img is None:
images.append(decode_image(img, False, None, None))
# 开始处理
bol = handle_img(images)
return return_body(True, "成功", bol)
except Exception as e:
print(f"接受处理图片失败:{e}")
return return_body(False, "接受处理图片失败", None)
def return_body(success, message, data):
result = {"success": success, "message": message, "data": data}
return jsonify(result)
if __name__ == "__main__":
app.config['JSON_AS_ASCII'] = False
app.run(host="0.0.0.0", port=5001, debug=True)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/FrankEvils/picture_transfer.git
git@gitee.com:FrankEvils/picture_transfer.git
FrankEvils
picture_transfer
picture_transfer
master

搜索帮助