作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想开始使用带有 python 的 Tkinter 并具有以下代码:
#!/usr/bin/python
from Tkinter import *
from PIL import ImageTk, Image
top = Tk()
dir(top)
top.title("Erstes Frame")
erstesFrame = Frame(top, height=250, width=250)
erstesFrame.pack_propagate(0)
erstesFrame.pack()
img = ImageTk.PhotoImage(Image.open("mario.gif"))
erstesBild = Label(erstesFrame, image = img)
erstesBild.pack()
top.mainloop()
Traceback (most recent call last):
File "ToDoAPP.py", line 14, in <module>
img = ImageTk.PhotoImage(Image.open("mario.gif"))
File "/usr/local/lib/python2.7/dist-packages/PIL/ImageTk.py", line 116, in __init__
self.paste(image)
File "/usr/local/lib/python2.7/dist-packages/PIL/ImageTk.py", line 181, in paste
import _imagingtk
ImportError: No module named _imagingtk
最佳答案
您需要安装 ImageTk
模块。
在 debian、ubuntu 中,您可以使用以下命令安装它:
sudo apt-get install python-imaging-tk
python-pil.imagetk
(Python 2.x) python3-pil.imagetk
(Python 3.x) 关于python - 导入错误 : No module named _imagingtk,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27030902/
我想开始使用带有 python 的 Tkinter 并具有以下代码: #!/usr/bin/python from Tkinter import * from PIL import ImageTk,
我想开始将 Tkinter 与 python 一起使用,并有以下代码: #!/usr/bin/python from Tkinter import * from PIL import ImageTk,
我想开始使用枕头,但遇到了一些问题: 起初,我以为我可以简单地 pip install pillow,所以我激活了我的 virtualenv 并照做了。当它不起作用时,我意识到我需要为 pillow
我是一名优秀的程序员,十分优秀!