From e66363a80704716953c566996e8b0c4a47e659f0 Mon Sep 17 00:00:00 2001 From: Hugo Chargois Date: Thu, 27 Feb 2025 01:18:08 +0100 Subject: [PATCH] Remove mention that 1-bit images use 1 byte per pixel --- docs/handbook/concepts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/handbook/concepts.rst b/docs/handbook/concepts.rst index 7da1078c1..714332171 100644 --- a/docs/handbook/concepts.rst +++ b/docs/handbook/concepts.rst @@ -30,7 +30,7 @@ image. Each pixel uses the full range of the bit depth. So a 1-bit pixel has a r INT32 and a 32-bit floating point pixel has the range of FLOAT32. The current release supports the following standard modes: - * ``1`` (1-bit pixels, black and white, stored with one pixel per byte) + * ``1`` (1-bit pixels, black and white) * ``L`` (8-bit pixels, grayscale) * ``P`` (8-bit pixels, mapped to any other mode using a color palette) * ``RGB`` (3x8-bit pixels, true color)