小编典典

如何在Django中使用Matplotlib?

django

从Internet的一些示例中,我做了下面的测试代码。有用!

…但是,如果我重新加载页面,则饼图将使用相同的图像进行绘制。每次重新加载页面时,某些部件的颜色都会变深。当我重新启动开发服务器时,它将被重置。如何在Django中使用Matplotlib正确绘制?看起来好像还记得一些图纸…

源views.py(让urls.py链接到它):

from pylab import figure, axes, pie, title
from matplotlib.backends.backend_agg import FigureCanvasAgg

def test_matplotlib(request):
    f = figure(1, figsize=(6,6))
    ax = axes([0.1, 0.1, 0.8, 0.8])
    labels = 'Frogs', 'Hogs', 'Dogs', 'Logs'
    fracs = [15,30,45, 10]
    explode=(0, 0.05, 0, 0)
    pie(fracs, explode=explode, labels=labels, autopct='%1.1f%%', shadow=True)
    title('Raining Hogs and Dogs', bbox={'facecolor':'0.8', 'pad':5})

    canvas = FigureCanvasAgg(f)    
    response = HttpResponse(content_type='image/png')
    canvas.print_png(response)
    return response

我正在使用Django 1.0.1和Python 2.6.2(Linux)。


阅读 1390

收藏
2020-03-30

共1个答案

小编典典

你需要num从图形构造函数中删除该参数,并在完成后关闭图形。

import matplotlib.pyplot

def test_matplotlib(request):
    f = figure(figsize=(6,6))
    ....
    matplotlib.pyplot.close(f)

通过删除该num参数,你将避免同时使用同一图形。如果2个浏览器同时请求图像,则可能会发生这种情况。如果这不是问题,则另一种可能的解决方案是使用clear方法,即f.clear()。

2020-03-30