我在 Fedora 13 上运行了 Python 2.6。我安装了 PIL 1.1.7,并在 Python 提示符中收到安装成功的消息。我可以导入PIL.PhotoImage
,但是当我尝试运行以下命令时,出现错误。
mgobj = PhotoImage(file=imgpath)
堆栈跟踪:
Traceback (most recent call last):
File "viewer-tk.py", line 25, in <module>
imgobj = PhotoImage(file=imgpath) # now JPEGs work!
File "/home/Toshiba/vinpython/venv/lib/python2.6/site-packages/PIL/ImageTk.py", line 116, in __init__
self.paste(image)
File "/home/Toshiba/vinpython/venv/lib/python2.6/site-packages/PIL/ImageTk.py", line 181, in paste
import _imagingtk
ImportError: No module named _imagingtk
在模块ImageTk.py
中,我看到_imagingtk
正在导入,但我不确定它是如何获取该模块的。非常感谢您的帮助!!!