如何使用Python读取图像文件?

时间:2010-09-17 13:08:54

标签: python image file

如何阅读图像文件并使用Python对其进行解码?

1 个答案:

答案 0 :(得分:47)

“read”这个词含糊不清,但这里有一个使用Image类读取jpeg文件并打印有关它的信息的例子。

from PIL import Image
jpgfile = Image.open("picture.jpg")

print(jpgfile.bits, jpgfile.size, jpgfile.format)