我使用Python 3和cherrypy提供以下HelloWorld项目,该项目提供2个matplotlib图像:
import cherrypy
import matplotlib.pyplot as plt
import numpy as np
from io import BytesIO
class HelloWorld(object):
@cherrypy.expose
def index(self):
output = """
Hello World!
<img src="image1.png" width="640", height="480" border="0" />
<img src="image2.png" width="640", height="480" border="0" />
"""
return output
@cherrypy.expose
def image1_png(self):
img = BytesIO()
self.plot(img)
img.seek(0)
retobj = cherrypy.lib.static.serve_fileobj(img, content_type='png', name='image1.png')
return retobj
@cherrypy.expose
def image2_png(self):
img = BytesIO()
self.plot(img)
img.seek(0)
retobj = cherrypy.lib.static.serve_fileobj(img, content_type='png', name='image2.png')
return retobj
def plot(self, image):
sampleData = np.random.normal(size=100)
plt.hist(sampleData)
plt.savefig(image, format='png')
if __name__ == '__main__':
cherrypy.quickstart(HelloWorld())
只调用其中一个图像(通过注释另一个图像)完全正常,但调用它们都不起作用。知道如何解决这个问题吗?
答案 0 :(得分:0)
原来这是matplotlib
后端tkinter
的线程问题。通过matplotlib.use('agg')
手动修改后端修复后端。请注意,必须在导入matplotlib.pyplot
之前放置该代码段。