Answers for "send image in flask"

2

How to return images in flask response?

from flask import send_file

@app.route('/get_image')
def get_image():
    if request.args.get('type') == '1':
       filename = 'ok.gif'
    else:
       filename = 'error.gif'
    return send_file(filename, mimetype='image/gif')
Posted by: Guest on October-09-2021
0

how to put a image in flask

<image src="{{url_for('static',filename = 'images/download.jpg')}}" >
Posted by: Guest on January-14-2021
-1

post an image Flask

def post_image(img_file):
    """ post image and return the response """
    img = open(img_file, 'rb').read()
    response = requests.post(URL, data=img, headers=headers)
    return response
Posted by: Guest on October-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language