好的..一個python程序的輸出顯示在一個Tkinter窗口中,該窗口分開打開。我想要做的是在瀏覽器中嵌入此窗口。代碼如下:如何將python tkinter窗口嵌入到瀏覽器中?
import numpy as np
import matplotlib
import matplotlib.cbook as cbook
import matplotlib.image as image
import matplotlib.pyplot as plt
datafile = cbook.get_sample_data('logo2.png', asfileobj=False)
print 'loading', datafile
im = image.imread(datafile)
im[:,:,-1] = 0.5 # set the alpha channel
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(np.random.rand(20), '-o', ms=20, lw=2, alpha=0.7, mfc='orange')
ax.grid()
fig.figimage(im, 10, 10)
plt.show()
考慮到所有變量都是從瀏覽器窗體字段中給出的輸入參數。請幫忙!! :-)
http://matplotlib.sourceforge.net/faq/howto_faq.html#matplotlib-in-a-web-application-server and http://stackoverflow.com/questions/5515278/plot-matplotlib-on-the -web可能會有所幫助。 – Ken
這有點有用,謝謝ken。然而,我確實需要的是tkinter的交互功能(默認情況下會出現在web上)以及生成的圖片。我怎樣才能做到這一點? :-) – khan
你需要的是一個在瀏覽器中工作的(標準)後端。我不知道任何這樣的後端,但我不希望tKinter成爲其中之一... –