From 74d0d59abccc293f5993c9db29b4075b8a2653ec Mon Sep 17 00:00:00 2001 From: CGDogan <126820728+CGDogan@users.noreply.github.com> Date: Fri, 11 Aug 2023 11:52:59 +0100 Subject: [PATCH] docs: Fix float range --- 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 e0975a121..850f71110 100644 --- a/docs/handbook/concepts.rst +++ b/docs/handbook/concepts.rst @@ -27,7 +27,7 @@ Modes The ``mode`` of an image is a string which defines the type and depth of a pixel in the image. Each pixel uses the full range of the bit depth. So a 1-bit pixel has a range of 0-1, an 8-bit pixel has a range of 0-255, a 32-signed integer pixel has the range of -INT32 and a 32-bit floating point pixel has the range of FLOAT32. The current release +INT32 and a 32-bit floating point pixel has the range of 0.0 to 1.0 (inclusive). The current release supports the following standard modes: * ``1`` (1-bit pixels, black and white, stored with one pixel per byte)