Warm tip: This article is reproduced from serverfault.com, please click

python-如何获得已经以字节为单位的图像的大小和分辨率

(python - How to get size and resolution on image that already in bytes)

发布于 2020-11-26 13:53:02

我想知道是否有某种方法可以获取已在python中以字节为单位的图像的大小和分辨率,我想对其进行搜索,并且它使用的是外部库..你知道如何通过外部库或不是。

谢谢

Questioner
Fahmi Roihan
Viewed
0
ozs 2020-11-29 03:25:42

你可以使用PIL(枕头)。

要安装它,请在你的终端上运行“ pip install pillow”:

from PIL import Image
import io

image_data = ... # byte values of the image
image = Image.open(io.BytesIO(image_data))
print(f'{image.height}, {image.width}')