这是我用Tkinter写的第一个节目,所以如果我的问题有点天真,我会提前道歉。
我有以下内容:
class Example(Frame):
def __init__(self, master=None):
Frame.__init__(self,master)
menubar = Menu(self)
master.config(menu=menubar)
self.centerWindow(master)
self.Top_Bar(menubar,master)
self.pack(fill = BOTH, expand = 1)
def Top_Bar(self,menubar,master):
fileMenu = Menu(menubar,tearoff=False)
menubar.add_cascade(label="File",menu=fileMenu)
fileMenu.add_command(label="Open",command = self.open_file)
fileMenu.add_command(label="Exit",command = self.quit)
fileMenu = Menu(menubar,tearoff=False)
menubar.add_cascade(label="Edit",menu=fileMenu)
fileMenu = Menu(menubar,tearoff=False)
menubar.add_cascade(label="Shortcuts",menu=fileMenu)
fileMenu = Menu(menubar,tearoff=False)
menubar.add_command(label="About",command = Message_About)
请注意,我有self.open_file
作为命令,它本身就是一个函数:
def open_file(self):
""" A function that opens the file dialog and allows a user to select a single file, displaying it on the page """
global filename
filename = []
filename.append(str(unicodedata.normalize("NFKD",tkFileDialog.askopenfilename(filetypes=[("Astronomical Data","*.fit;*fits")])).encode("ascii","ignore")))
for i in filename:
stretch_type = "linear"
image_manipulation_pyfits.create_png(i,stretch_type)
x = Image.open("file.png")
Label(image = x).pack()
我确定这是一种更短,更有效的编写此功能的方法,但这不是我此时的主要目标 - 只是为了让一切工作正常。我的目标是拍摄此图像x
并将其显示在Tkinter窗口中。它给了我错误
Exception in Tkinter callback
Traceback (most recent call last):
File "C:\python27\lib\lib-tk\Tkinter.py", line 1486, in __call__
return self.func(*args)
File "tkinter1.py", line 125, in open_file
Label(image = x).pack()
File "C:\python27\lib\lib-tk\ttk.py", line 766, in __init__
Widget.__init__(self, master, "ttk::label", kw)
File "C:\python27\lib\lib-tk\ttk.py", line 564, in __init__
Tkinter.Widget.__init__(self, master, widgetname, kw=kw)
File "C:\python27\lib\lib-tk\Tkinter.py", line 2055, in __init__
(widgetName, self._w) + extra + self._options(cnf))
TclError: image specification must contain an odd number of elements
为清楚起见,先前的函数只需输入.fits图像(从弹出的对话框中选择)并应用线性拉伸,然后将其作为.png图像保存到名称&#34下的同一目录中; file.png"
我在过去的一天左右用Google搜索过,并且无法找到有关此错误的任何主题。
答案 0 :(得分:0)
我找到了一个解决方案:
x = Image.open("file.gif")
x = ImageTk.PhotoImage(x)
label = Label(image = x)
label.image = x
label.pack()
答案 1 :(得分:0)
如果可以,我会评论,但只是关于@ bjd2385答案的说明。在他的情况下,label.image = x
保存了图像的引用,但是如果省略了这行代码,那么如果在设计模式中使用类,则需要使用self
来保存引用。而不是im = ImageTk.PhotoImage("...")
它将是self.im = ImageTk.PhotoImage("...")
,否则它可以收集垃圾并仍然显示图像的位置轮廓,但实际上不存在图像。
此外,您可以直接打开PhotoImage
电话中的图片。我不确定可以使用的图像文件的完整限制,但我知道你可以使用.gif和.png。以下是他为Python3.4重新编写的答案:
import tkinter
self.img = ImageTk.PhotoImage(file = "./images/file.png")
label = Label(image = self.img)
label.image = self.img # this line can be omitted if using the 'self' method to save a reference
label.pack()