当前位置:   article > 正文

FASTAPI_fastapi 返回图片

fastapi 返回图片
#导入库
from fastapi import FastAPI, File, Form, UploadFile
from typing import List  #上传多个文件
import shutil #删除文件夹

#实例化
app = FastAPI()
@app.post("/***")  #名字自取,尽量这两个一样
async def ***(files: List[UploadFile] = File(...)): #多个文件上传
    try:
    	for file in files: # 循环文件list,读取其中每一个文件
            res = await file.read()  # 读取
            with open(cache_path+file.filename, "wb") as f:  #读取文件,并写入
                f.write(res) # 写入
                ...... # 自己需要的代码操作
                ...... # 可以自己调用函数
         return {"filenname": [(cache_path+file.filename) for file in files]} #返回需要的信息 
     except Exception as e:  # 捕捉报错信息
        return {"message Ex": str(e)}
	 finally:  # 不论是否出错,都删除临时文件夹
        shutil.rmtree(cache_path)
if __name__ == '__main__':
    import uvicorn
    print('----------')
    uvicorn.run(app='aaa:app', host="0.0.0.0", port=8084, reload=True, debug=True)  #aaa是.py文件名字,port本地地址,debug=TRUE可以使用调试

# 上传单个文件
app = FastAPI()
@app.post("/***")
async def ***(file: UploadFile = File(...)):
	try:
        res = await file.read()
        with open(cache_path + file.filename, "wb") as f:
            f.write(res)
            .....  # 同上
            .....
            # 返回处理后的图片
            img_1 = cv2.imread(cache_path_1 + file.filename)  # 先读取图片,或者处理后返回结果就是图片
            res, img = cv2.imencode(".png", img_1) # 转换
            cv2.waitKey(0)
        return StreamingResponse(io.BytesIO(img.tobytes()), media_type="image/png")  # 返回图片
    except Exception as e:
        return {"messgae Ex": str(e)}
    finally:  # 删除文件
        shutil.rmtree(cache_path)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

临时文件夹创建
MD5方法

import time
    import hashlib
    time = str(time.time())  # 获取当前时间转换为str
    dir_x = str(file) + time  # 文件名转换str
    if isinstance(dir_x, str):
    # 如果是unicode先转utf-8
        parmStr = dir_x.encode("utf-8")
    m = hashlib.md5()
    m.update(parmStr)
    dir_s = m.hexdigest()
    cache_path = "创建文件夹的路径/" + dir_s + "/"
    os.makedirs(cache_path)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/916798
推荐阅读
相关标签
  

闽ICP备14008679号