欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

探寻PIL.Image.open(filename)返回值

程序员文章站 2022-05-16 11:23:37
...
print(Image.open('0.png'))

输出结果:

<PIL.PngImagePlugin.PngImageFile image mode=RGBA size=317x25 at 0x1F5329FDA20>

print(Image.open('0.png').convert('L'))

输出结果:

<PIL.Image.Image image mode=L size=317x25 at 0x22BBD5F2518>