标签: python image file
如何阅读图像文件并使用Python对其进行解码?
答案 0 :(得分:47)
“read”这个词含糊不清,但这里有一个使用Image类读取jpeg文件并打印有关它的信息的例子。
from PIL import Image jpgfile = Image.open("picture.jpg") print(jpgfile.bits, jpgfile.size, jpgfile.format)