pycharm图像显示

import flask
app = flask.Flask("web")
@app.route("/")#访问路由
def index():#将你需要调用的方法写这
    fobj = open("img.jpg", "rb")
    data = fobj.read()
    fobj.close()
    response = flask.make_response(data)
    response.headers["content-type"] = "image/jpeg"# 不写这句会出现乱码
    # 默认是text/html
    return response

app.debug = True
app.run()

浏览器运行为:

pycharm图像显示_第1张图片
若图像位置在static文件下里边,则
代码可以写:

import flask
# 若图像位置在static文件下里边,则
app = flask.Flask("web")

@app.route("/")#访问路由
def index():#将你需要调用的方法写这
    html = "

Image

"
return html app.debug = True app.run()

运行结果:

pycharm图像显示_第2张图片

你可能感兴趣的:(python爬虫,pycharm,python,flask)