在 TKinter 窗口中创建图形?

Posted

技术标签:

【中文标题】在 TKinter 窗口中创建图形?【英文标题】:Create a graph in a TKinter window? 【发布时间】:2011-10-31 04:58:36 【问题描述】:

我正在编写一个脚本,该脚本将运行数据并创建图表。这很容易完成。不幸的是,我使用的图形模块只能以 pdf 格式创建图形。不过,我希望将图表显示在交互式窗口中。

他们有什么方法可以将使用PyX 创建的图形添加到 TKinter 窗口中,或者将 pdf 加载到框架中或其他东西中吗?

【问题讨论】:

【参考方案1】:

您需要将 PyX 输出转换为位图以将其包含在您的 Tkinter 应用程序中。虽然没有直接将 PyX 输出作为 PIL 图像的便捷方法,但您可以使用 pipeGS 方法准备位图并使用 PIL 加载它。这是一个相当简单的例子:

import tempfile, os

from pyx import *
import Tkinter
import Image, ImageTk

# first we create some pyx graphics
c = canvas.canvas()
c.text(0, 0, "Hello, world!")
c.stroke(path.line(0, 0, 2, 0))

# now we use pipeGS (ghostscript) to create a bitmap graphics
fd, fname = tempfile.mkstemp()
f = os.fdopen(fd, "wb")
f.close()
c.pipeGS(fname, device="pngalpha", resolution=100)
# and load with PIL
i = Image.open(fname)
i.load()
# now we can already remove the temporary file
os.unlink(fname)

# finally we can use this image in Tkinter
root = Tkinter.Tk()
root.geometry('%dx%d' % (i.size[0],i.size[1]))
tkpi = ImageTk.PhotoImage(i)
label_image = Tkinter.Label(root, image=tkpi)
label_image.place(x=0,y=0,width=i.size[0],height=i.size[1])
root.mainloop()

【讨论】:

以上是关于在 TKinter 窗口中创建图形?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Tkinter 在 Python 2.7 中创建等宽列

如何在 Tkinter 应用程序上收听终端?

如果在函数中创建,为啥 Tkinter 图像不显示?

如果在函数中创建,为啥 Tkinter 图像不显示?

用Tkinter打造GUI开发工具(49)在Tkinter窗口上动态显示matplotlib.pyplot图形

用Tkinter打造GUI开发工具(49)在Tkinter窗口上动态显示matplotlib.pyplot图形