赞
踩
from PIL import Image img=Image.open('IMG_20220109_150536.png')# 直接就输出图像的通道数了print(len(img.split()))
另外我发现查看图像位深度的时候,位深度为8的时候是单通道,位深度为24的时候是三通道,