png画像をインポートしたいが、画像の引数としてimagetypeを正しい方法で書くことができない。私は "png"、 "PNG"、imgtype = "png"と書いてみましたが、うまくいきません。誰でもこれを正しく書く方法を知っていますか?私は以下のコードを使用しています。私はOSXのbtwを使用しています。PILでpng画像をインポートできない
from Tkinter import *
import PIL
root = Tk()
img = Image("this is where i'm supppsed to write imgtype", file="image.png")
panel = Canvas(root)
panel.pack(side = "bottom", fill = "both", expand = "yes")
panel.create_image(image=img)
root.mainloop()
おかげで、それが働きました。しかし、私は新しい問題に遭遇しました。それは_imaging Cモジュールがインストールされていないと言います – ronaldfisher
私はこの記事をeffbot.orgで見つけました。これはhttp://effbot.org/zone/pil-imaging-not-installedです。 htm – alxwrd