我的代码是这样的 code
filename = 'X:'+os.sep+'premiere'+os.sep+'pic'+os.sep+'bg.png'
im = Image.open(filename)
print im
print type(im)
print dir(type(im))
我可以打印im的类型是PngImageFile。 im's type
<PIL.PngImagePlugin.PngImageFile image mode=RGBA size=3508x2480 at 0x33BE550>
<class 'PIL.PngImagePlugin.PngImageFile'>
['_Image__transformer', '__class__', '__copy__', '__delattr__', '__dict__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__', '__getattr__', '__getattribute__', '__getstate__'........]
但我不能在im上使用任何PngImageFile的属性。有人可以告诉我为什么,我很困惑。