@@ -30,35 +30,35 @@ image. Each pixel uses the full range of the bit depth. So a 1-bit pixel has a r
3030INT32 and a 32-bit floating point pixel has the range of FLOAT32. The current release
3131supports the following standard modes:
3232
33- * ``1 `` (1-bit pixels, black and white, stored with one pixel per byte)
34- * ``L `` (8-bit pixels, grayscale)
35- * ``P `` (8-bit pixels, mapped to any other mode using a color palette)
36- * ``RGB `` (3x8-bit pixels, true color)
37- * ``RGBA `` (4x8-bit pixels, true color with transparency mask)
38- * ``CMYK `` (4x8-bit pixels, color separation)
39- * ``YCbCr `` (3x8-bit pixels, color video format)
33+ * ``1 `` (1-bit pixels, black and white, stored with one pixel per byte)
34+ * ``L `` (8-bit pixels, grayscale)
35+ * ``P `` (8-bit pixels, mapped to any other mode using a color palette)
36+ * ``RGB `` (3x8-bit pixels, true color)
37+ * ``RGBA `` (4x8-bit pixels, true color with transparency mask)
38+ * ``CMYK `` (4x8-bit pixels, color separation)
39+ * ``YCbCr `` (3x8-bit pixels, color video format)
4040
41- * Note that this refers to the JPEG, and not the ITU-R BT.2020, standard
41+ * Note that this refers to the JPEG, and not the ITU-R BT.2020, standard
4242
43- * ``LAB `` (3x8-bit pixels, the L*a*b color space)
44- * ``HSV `` (3x8-bit pixels, Hue, Saturation, Value color space)
43+ * ``LAB `` (3x8-bit pixels, the L*a*b color space)
44+ * ``HSV `` (3x8-bit pixels, Hue, Saturation, Value color space)
4545
46- * Hue's range of 0-255 is a scaled version of 0 degrees <= Hue < 360 degrees
46+ * Hue's range of 0-255 is a scaled version of 0 degrees <= Hue < 360 degrees
4747
48- * ``I `` (32-bit signed integer pixels)
49- * ``F `` (32-bit floating point pixels)
48+ * ``I `` (32-bit signed integer pixels)
49+ * ``F `` (32-bit floating point pixels)
5050
5151Pillow also provides limited support for a few additional modes, including:
5252
53- * ``LA `` (L with alpha)
54- * ``PA `` (P with alpha)
55- * ``RGBX `` (true color with padding)
56- * ``RGBa `` (true color with premultiplied alpha)
57- * ``La `` (L with premultiplied alpha)
58- * ``I;16 `` (16-bit unsigned integer pixels)
59- * ``I;16L `` (16-bit little endian unsigned integer pixels)
60- * ``I;16B `` (16-bit big endian unsigned integer pixels)
61- * ``I;16N `` (16-bit native endian unsigned integer pixels)
53+ * ``LA `` (L with alpha)
54+ * ``PA `` (P with alpha)
55+ * ``RGBX `` (true color with padding)
56+ * ``RGBa `` (true color with premultiplied alpha)
57+ * ``La `` (L with premultiplied alpha)
58+ * ``I;16 `` (16-bit unsigned integer pixels)
59+ * ``I;16L `` (16-bit little endian unsigned integer pixels)
60+ * ``I;16B `` (16-bit big endian unsigned integer pixels)
61+ * ``I;16N `` (16-bit native endian unsigned integer pixels)
6262
6363Premultiplied alpha is where the values for each other channel have been
6464multiplied by the alpha. For example, an RGBA pixel of ``(10, 20, 30, 127) ``
0 commit comments