文章目录
img.mode有哪些常见的类型
在PIL (Python Imaging Library) 或其继承版本Pillow中,Image
对象的 mode
属性表示图像的像素格式(即每个像素的组成成分以及它们的存储方式)。以下是常见的 mode
类型及其解释:
-
“1” (1-bit pixels, black and white, stored with one pixel per byte)
- 每个像素使用1位表示,图像只有黑白两种颜色。
-
“L” (8-bit pixels, black and white)
- 每个像素使用8位表示,灰度图像,像素值范围为0-255。
-
“P” (8-bit pixels, mapped to any other mode using a color palette)
- 每个像素使用8位表示,通过调色板映射到任意颜色;通常用于索引颜色图像。
-
“RGB” (3x8-bit pixels, true color)
- 每个像素使用2