From 5060264b1b56be10764821db990583f8a7c567bd Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Fri, 21 Jan 2022 11:16:34 +1300 Subject: [PATCH] Add doc for transparent_binary image type (#1796) --- components/display/index.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/display/index.rst b/components/display/index.rst index 60431b81b..affb1db57 100644 --- a/components/display/index.rst +++ b/components/display/index.rst @@ -507,6 +507,8 @@ Configuration variables: per pixel, 8 pixels per byte. - ``GRAYSCALE``: Full scale grey. Uses 8 bits per pixel, 1 pixel per byte. - ``RGB24``: Full RGB color stored. Uses 3 bytes per pixel. + - ``TRANSPARENT_BINARY``: One color, any pixel that is fully transparent will not be drawn, and any other pixel + will be the on color. Uses 1 bit per pixel, 8 pixels per byte. - **dither** (*Optional*): Specifies which dither method used to process the image, only used in GRAYSCALE and BINARY type image. Defaults to ``NONE``. You can read more about it `here `__ and `here `__.