Python PIL has no attribute 'Image'

后端 未结 2 818
死守一世寂寞
死守一世寂寞 2020-12-30 20:11

I\'m using python2.6 and got a problem this morning. It said \'module\' has no attribute \'Image\'. Here is my input. Why the first time I can not use PIL.Image?

<         


        
相关标签:
2条回答
  • 2020-12-30 20:50

    You can do:

    try:
        import Image
    except ImportError:
        from PIL import Image
    

    it's better to use pillow instead PIL.

    0 讨论(0)
  • 2020-12-30 20:51

    PIL's __init__.py is just an empty stub as is common. It won't magically import anything by itself.

    When you do from PIL import Image it looks in the PIL package and finds the file Image.py and imports that. When you do PIL.Image you are actually doing an attribute lookup on the PIL module (which is just an empty stub unless you explicitly import stuff).

    In fact, importing a module usually doesn't import submodules. os.path is a famous exception, since the os module is magic.

    More info:
    The Image Module

    0 讨论(0)
提交回复
热议问题