Код: Выделить всё
@app.route("/vector_image", methods=["POST"])
def image_endpoint():
# img = ... # Create the image here
return Response(img, mimetype="image/png")
Подробнее здесь: https://stackoverflow.com/questions/558 ... in-fastapi
Код: Выделить всё
@app.route("/vector_image", methods=["POST"])
def image_endpoint():
# img = ... # Create the image here
return Response(img, mimetype="image/png")