diff options
author | Nick Brassel <nick@tzarc.org> | 2022-11-09 02:47:07 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-08 15:47:07 +0000 |
commit | 9daf77b59373196839d022d621f015e074aa427a (patch) | |
tree | a481197569920ab942155131613bff5e4a982b0b /docs | |
parent | bb0856d231a8de244e3057dd095d11e9298414f3 (diff) |
Add raw output option for QGF/QFF files. (#18998)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/quantum_painter.md | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/quantum_painter.md b/docs/quantum_painter.md index ed9cec171b..781b467a45 100644 --- a/docs/quantum_painter.md +++ b/docs/quantum_painter.md @@ -55,10 +55,11 @@ This command converts images to a format usable by QMK, i.e. the QGF File Format **Usage**: ``` -usage: qmk painter-convert-graphics [-h] [-d] [-r] -f FORMAT [-o OUTPUT] -i INPUT [-v] +usage: qmk painter-convert-graphics [-h] [-w] [-d] [-r] -f FORMAT [-o OUTPUT] -i INPUT [-v] -optional arguments: +options: -h, --help show this help message and exit + -w, --raw Writes out the QGF file as raw data instead of c/h combo. -d, --no-deltas Disables the use of delta frames when encoding animations. -r, --no-rle Disables the use of RLE when encoding images. -f FORMAT, --format FORMAT @@ -146,10 +147,11 @@ This command expects an image that conforms to the following format: **Usage**: ``` -usage: qmk painter-convert-font-image [-h] [-r] -f FORMAT [-u UNICODE_GLYPHS] [-n] [-o OUTPUT] [-i INPUT] +usage: qmk painter-convert-font-image [-h] [-w] [-r] -f FORMAT [-u UNICODE_GLYPHS] [-n] [-o OUTPUT] [-i INPUT] -optional arguments: +options: -h, --help show this help message and exit + -w, --raw Writes out the QFF file as raw data instead of c/h combo. -r, --no-rle Disable the use of RLE to minimise converted image size. -f FORMAT, --format FORMAT Output format, valid types: pal256, pal16, pal4, pal2, mono256, mono16, mono4, mono2 |