我想通过curl将图像发送到Flask服务器,我正在尝试使用curl命令,
curl -X POST -F file=image.jpg "http://127.0.0.1:5000/"
但是在服务器端却无法使用,我通过此代码处理了图像,image = Image.open(request.files['file'])
我正在尝试使用PIL读取图像
,无论如何做这个?
提前致谢
这为我工作:
curl -F "file=@image.jpg" http://localhost:5000/
“ @”很重要,否则您将遇到一个HTTP错误400(服务器无法理解请求)。我也删除了“ -X POST”位,因为这是不必要的。
我的烧瓶视图:
from PIL import Image @app.route("/", methods=["POST"]) def home(): img = Image.open(request.files['file']) return 'Success!'