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

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

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

 from PIL import Image jpgfile = Image.open("picture.jpg") print jpgfile.bits, jpgfile.size, jpgfile.format