docs: Fix float range

This commit is contained in:
CGDogan 2023-08-11 11:52:59 +01:00 committed by GitHub
parent 08b538780d
commit 74d0d59abc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)