关于图像的信息

Information about image

如何获取图像信息?我需要文件大小(字节)、图像大小(像素)、颜色 模式,每像素位数。我已经找到图像尺寸(像素),但我找不到另一个。

我有:

from skimage.io import imread

im = imread('abc.png')
print("Size: ", im.size, im.shape)

我建议使用 Pillow library

这将为您提供除文件大小之外的有关图像的所有请求信息。

from PIL import Image

im = Image.open('whatever.png')
width, height = im.size

图片对象的属性请参考link

要获取文件大小,请使用下面的代码片段。

import os
print os.stat('somefile.ext').st_size