我在python中找不到PIL

时间:2016-06-18 03:43:07

标签: python

我已经安装了Pillow并且可以看到它的安装位置但是从PIL导入图像不起作用。没有称为PIL的模块。是否尝试了“导入图像”,但仍然没有结果?

from tkinter import *
from tkinter import ttk
from PIL import Image

root = Tk()
root.title("Something")
root.geometry('600x600')

def resize_image(event):
    new_width = event.width
    new_height = event.height
    image = copy_of_image.resize((new_width, new_height))
    photo = ImageTk.PhotoImage('fun.gif')
    label.config(image = photo)
    label.image = photo #avoid garbage collection

image = Image.open('fun.gif')
copy_of_image = image.copy()
photo = ImageTk.PhotoImage(image)
label = ttk.Label(root, image = photo)
label.bind('<Configure>', resize_image)
label.pack(fill=BOTH, expand = YES)

root.mainloop()

1 个答案:

答案 0 :(得分:0)

我认为如果您的安装正确,那么它将在您的Pyhton3x / Lib / site_packges / PIL中创建一个PIL目录。如果它不在那里,那么尝试从site_packages清理Pillow并再次安装它。