5

问题的关键是,我在下面的代码片段中做错了什么?

    from tkinter import *
    from tkinter.ttk import *

    root = Tk()

    myButton = Button(root)
    myImage = PhotoImage(myButton, file='myPicture.gif')
    myButton.image = myImage
    myButton.configure(image=myImage)

    root.mainloop()

我从 idle3 得到的错误信息如下:

    >>> 
    Traceback (most recent call last):
      File "/home/bob/Documents/Python/tkImageTest.py", line 9, in <module>
        myButton.configure(image=myImage)
      File "/usr/lib/python3.2/tkinter/__init__.py", line 1196, in configure
        return self._configure('configure', cnf, kw)
      File "/usr/lib/python3.2/tkinter/__init__.py", line 1187, in _configure
        self.tk.call(_flatten((self._w, cmd)) + self._options(cnf))
    TypeError: __str__ returned non-string (type Button)
    >>> 

这个错误信息让我很困惑,我根本不明白它想说什么。有任何想法吗?

我也将不胜感激有关更改的建议...

4

2 回答 2

7

该错误似乎指向myButton传递给PhotoImage. 正如您在评论中指出的那样,PhotoImage将小部件对象视为字符串(有几个字符串类型的选项;请参阅此处的 PhotoImage 选项列表)。

如果您在不引用myButton对象的情况下实现该行,您的代码将起作用:

myImage = PhotoImage(file='myPicture.gif')

我不确定您是否需要更改PhotoImage构造函数。查看PhotoImage文档以确定该类的有效选项(即资源名称)。引用帮助文件:

关于模块 tkinter 中的类 PhotoImage 的帮助:

类照片图像(图像)

| Widget which can display colored images in GIF, PPM/PGM format.
|    
|  Method resolution order:  
|      PhotoImage  
|      Image  
|      builtins.object  
|    
|  Methods defined here:
|    
|  __getitem__(self, key)  
|      # XXX config  
|    
|  __init__(self, name=None, cnf={}, master=None, **kw)  
|      Create an image with NAME.
|
|      Valid resource names: data, format, file, gamma, height, palette, 
|      width.

仅供参考:在命令行或 IDLE 中从 Python 获取文档的最简单方法:

from tkinter import PhotoImage
help(PhotoImage)

最后,关于这个类的另一个有用的链接是http://tkinter.unpythonic.net/wiki/PhotoImage

于 2012-07-22T18:17:34.137 回答
-1

我用 32 位和 64 位的 python 2.7.9、3.2.5、3.3.5、3.4.3 测试了这个例子。(Win 8.1 64位)

该代码有效。

(在 python 3.4.3 64bit 中,我首先收到一条错误消息。

我已经完全卸载了 3.4.3,然后重新安装。

现在,该示例也适用于 3.4.3 64 位)

# basic code from >>
# http://tkinter.unpythonic.net/wiki/PhotoImage

# extra code -------------------------------------------------------------------------
from __future__ import print_function

try:
    import tkinter as tk
except:
    import Tkinter as tk

import sys
import platform

print ()
print ('python    ', sys.version)
print ('tkinter   ', tk.TkVersion)
print ()
print (platform.platform(),' ',platform.machine())
print ()


# basic code -------------------------------------------------------------------------

root = tk.Tk()

def create_button_with_scoped_image():
    # "w6.gif" >>
    # http://www.inf-schule.de/content/software/gui/entwicklung_tkinter/bilder/w6.gif
    img = tk.PhotoImage(file="w6.gif")  # reference PhotoImage in local variable
    button = tk.Button(root, image=img)
    # button.img = img  # store a reference to the image as an attribute of the widget
    button.image = img  # store a reference to the image as an attribute of the widget
    button.grid()

create_button_with_scoped_image()

tk.mainloop()
于 2015-05-29T20:27:31.093 回答