From d86fa316ca328f1d6647afb06cf89f5fddd45a33 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 5 Sep 2018 21:02:32 +1000 Subject: [PATCH 1/2] Fixed typo [ci skip] --- docs/handbook/writing-your-own-file-decoder.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/handbook/writing-your-own-file-decoder.rst b/docs/handbook/writing-your-own-file-decoder.rst index aa2463bd1..258e9af3e 100644 --- a/docs/handbook/writing-your-own-file-decoder.rst +++ b/docs/handbook/writing-your-own-file-decoder.rst @@ -204,7 +204,7 @@ table describes some commonly used **raw modes**: +-----------+-----------------------------------------------------------------+ | ``RGBX`` | 24-bit true colour, stored as (red, green, blue, pad). | +-----------+-----------------------------------------------------------------+ -| ``RGB;L`` | 24-bit true colour, line interleaved (first all red pixels, the | +| ``RGB;L`` | 24-bit true colour, line interleaved (first all red pixels, then| | | all green pixels, finally all blue pixels). | +-----------+-----------------------------------------------------------------+ From f4fd517373d5a36887d0cd20fcc16de39b85275e Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 5 Sep 2018 21:05:09 +1000 Subject: [PATCH 2/2] Removed blank line after heading for consistency [ci skip] --- docs/handbook/writing-your-own-file-decoder.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/handbook/writing-your-own-file-decoder.rst b/docs/handbook/writing-your-own-file-decoder.rst index 258e9af3e..107e25f36 100644 --- a/docs/handbook/writing-your-own-file-decoder.rst +++ b/docs/handbook/writing-your-own-file-decoder.rst @@ -171,7 +171,6 @@ The fields are used as follows: stride defaults to 0. **orientation** - Whether the first line in the image is the top line on the screen (1), or the bottom line (-1). If omitted, the orientation defaults to 1.