From 99936d8ed2079f45110b4e243a9bbc34fa14d3f3 Mon Sep 17 00:00:00 2001 From: Larry Bank Date: Mon, 16 Dec 2024 12:17:12 +0000 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fa8bb94..a4eb130 100644 --- a/README.md +++ b/README.md @@ -18,16 +18,16 @@ It's the first epaper library I've ever seen which can draw text and graphics wi Features:
---------
- C API and C++ wrapper class with all of the usual graphics functions
+- Supports any bit depth of graphics (currently 2/3/7/16 color & grayscale)
- Supports a large number of panels in a consistent way, without tons of repeated code
- Supports any number of simultaneous displays of any type (mix and match)
-- Includes a unique compressed bitmap font format
+- Includes support for a unique compressed font and bitmap format
+- Includes command line tools to convert and compress TTF fonts and WinBMP files
- Text cursor position with optional line wrap
- A function to load a Windows BMP file
-- Optimized Bresenham line drawing
-- Optimized Bresenham outline and filled ellipse drawing
-- Optimized outline and filled rectangle drawing
+- Optimized pixel pipeline customized for each supported bit depth

-This code depends on my Group5 data compression library (included).
+The compmressed font handling depends on my Group5 data compression library (included).
See the Wiki for help getting started
https://github.com/bitbank2/bb_epaper/wiki

@@ -35,7 +35,7 @@ https://github.com/bitbank2/bb_epaper/wiki
A few words about fonts
-----------------------
-The library includes 3 fixed fonts (6x8, 8x8 and 12x16). The 12x16 is really a stretched+smoothed version of the 6x8 to save FLASH space. To use more elaborate fonts with more extensive character support, use my BB_FONT format compressed bitmap fonts. This functionality is part of my Group5 compression library.
+The library includes 4 fixed fonts (6x8, 8x8, 16x16 and 12x16). The 16x16 and 12x16 are really a stretched+smoothed version of the 6x8 to save FLASH space. To use more elaborate fonts with more extensive character support, use my BB_FONT format compressed bitmap fonts. This functionality is part of my Group5 compression library.
Black & White (& Red)
------------------------