2012-11-11 88 views
2

Possible Duplicate:
img = Image.open(fp) AttributeError: class Image has no attribute ‘open’類圖片有沒有屬性「打開」

所以我想查看蟒蛇的照片與Tkinter的。我安裝PIL,我試圖打開一個圖片,但我不斷收到一個屬性錯誤說「類圖片有沒有屬性‘打開’

from __future__ import division 
from PIL import Image 
from Tkinter import * 
import random 

img = Image.open("majestic creature.jpeg").convert("RGB") 

這還不是全部我的代碼,但是這是一部分該方案似乎有麻煩。

+0

我已經看過那個帖子。我試過解決方案,它給了我另一個錯誤: IOError:無法識別圖像文件 – Clockwork

+0

什麼是錯誤? – Doorknob

+0

編輯了註釋以包含錯誤。過早按下輸入。 – Clockwork

回答

6

從你所說的話,即This is not all of the code的樣子。
你或其他一些進口已宣佈所謂Image一些變量/類,這已覆蓋,是由進口ImagePIL

要專門使用PILImage類用途:

img = PIL.Image.open("majestic creature.jpeg").convert("RGB")