Flask:我如何提供动态生成的svg

时间:2015-03-25 16:32:34

标签: python svg flask

所以我有生成SVG xml的代码:

def get_map(locations):
    max_value = max(locations.iteritems(), key=operator.itemgetter(1))[1]
    base = "fill:#%s;fill-rule:nonzero;"

    f = open("../static/img/usaHigh.svg", "r").read()
    soup = BeautifulSoup(f)

    for l in locations:
       #do stuff.....

    return str(soup)

但现在我想通过烧瓶服务这个svg。能够做类似

的事情
<img src='sometemp.svg'>

所以我的烧瓶功能如下:

def serve_content():
    return render_template('sometemplate.html', map=get_map())

这可以在不创建临时文件的情况下实现吗?

编辑:这是输出的一大块:

<?xml version='1.0' encoding='utf-8'?>
<!-- (c) ammap.com | SVG map of USA -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:amcharts="http://amcharts.com/ammap" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<defs>
<style type="text/css">
            .land
            {
                fill: #CCCCCC;
                fill-opacity: 1;
                stroke:white;
                stroke-opacity: 1;
                stroke-width:0.5;
            }
        </style>
<!--{id:"US-AK"},{id:"US-AL"},{id:"US-AR"},{id:"US-AZ"},{id:"US-CA"},{id:"US-CO"},{id:"US-CT"},{id:"US-DC"},{id:"US-DE"},{id:"US-FL"},{id:"US-GA"},{id:"US-HI"},{id:"US-IA"},{id:"US-ID"},{id:"US-IL"},{id:"US-IN"},{id:"US-KS"},{id:"US-KY"},{id:"US-LA"},{id:"US-MA"},{id:"US-MD"},{id:"US-ME"},{id:"US-MI"},{id:"US-MN"},{id:"US-MO"},{id:"US-MS"},{id:"US-MT"},{id:"US-NC"},{id:"US-ND"},{id:"US-NE"},{id:"US-NH"},{id:"US-NJ"},{id:"US-NM"},{id:"US-NV"},{id:"US-NY"},{id:"US-OH"},{id:"US-OK"},{id:"US-OR"},{id:"US-PA"},{id:"US-RI"},{id:"US-SC"},{id:"US-SD"},{id:"US-TN"},{id:"US-TX"},{id:"US-UT"},{id:"US-VA"},{id:"US-VT"},{id:"US-WA"},{id:"US-WI"},{id:"US-WV"},{id:"US-WY"}-->
</defs>
<g>
<path id="US-AK" title="Alaska" class="land" d="M456.18,521.82l-0.1,4.96l-0.1,4.94l-0.1,4.92l-0.1,4.9l-0.1,4.88l-0.1,4.86l-0.1,4.84l-0.1,4.82l-0.1,4.8l-0.1,4.78l-0.1,4.77l-0.09,4.75l-0.1,4.73l-0.09,4.71l-0.09,4.7l-0.09,4.68l-0.09,4.66l-0.09,4.65l-0.09,4.64l-0.09,4.62l-0.09,4.61l-0.09,4.59l-0.09,4.58l-0.09,4.56l-0.09,4.55l-0.09,4.54l-0.09,4.53l-0.09,4.51l-0.09,4.5l-0.09,4.49l-0.09,4.48l-0.09,4.47l1.8,0.66l1.79,0.65l0.57,-1.23l1.93,0.97l1.69,0.85l1.09,-1.06l1.18,-1.14l1.58,-0.07l1.77,-0.09l1.18,-0.06l0,0.98l-0.44,1.63l-

所以我试图将其传回页面模板,而不先将其保存到文件中,然后再将其提供。这可能吗?

编辑2:

这是路由功能

@app.route("/map", methods=["GET", "POST"])
def map():
    locations = {"US-NY":60,
             "US-FL":30,
             "US-CA":100}
    #return Response(get_map(locations), mimetype='image/svg+xml')
    return render_template("map.html", svg=get_map(locations))

这是我的模板:

<html>
<body>

this is some of the stuff I want, here's a beautiful map

{{ svg }}
</body>

</html>

这就是我的网页在Chrome上的样子 enter image description here

所以它实际上没有显示svg:&#39;(

3 个答案:

答案 0 :(得分:3)

您的SVG代码为autoescaped。一个合适的解决方案是调用Markup(),如下所示:

return render_template("map.html", svg=Markup(get_map(locations)))

答案 1 :(得分:1)

您可以使用StringIO:

from flask import send_file
from StringIO import StringIO

def serve_content(content):
    svg_io = StringIO()
    svg_io.write(content)
    svg_io.seek(0)
    return send_file(svg_io, mimetype='image/svg+xml')

答案 2 :(得分:0)

对于那些不需要实际文件的人,这是我使用自定义颜色从头开始制作SVG 并将其与Flask一起使用的方法。

{{1}}
相关问题