当前位置:   article > 正文

python pil image,Python PIL没有属性'Image'

module' object has no attribute 'image

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?

>>> import PIL

>>> PIL.Image

Traceback (most recent call last):

File "", line 1, in

AttributeError: 'module' object has no attribute 'Image'

>>> from PIL import Image

>>> Image

>>> PIL.Image

解决方案

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.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/575292
推荐阅读
相关标签
  

闽ICP备14008679号