You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nathan ed18dd911a
build lightwatch / build (push) Failing after 5m6s Details
removing submodule
1 year ago
..
4x6.bdf removing submodule 1 year ago
5x7.bdf removing submodule 1 year ago
5x8.bdf removing submodule 1 year ago
6x9.bdf removing submodule 1 year ago
6x10.bdf removing submodule 1 year ago
6x12.bdf removing submodule 1 year ago
6x13.bdf removing submodule 1 year ago
6x13B.bdf removing submodule 1 year ago
6x13O.bdf removing submodule 1 year ago
7x13.bdf removing submodule 1 year ago
7x13B.bdf removing submodule 1 year ago
7x13O.bdf removing submodule 1 year ago
7x14.bdf removing submodule 1 year ago
7x14B.bdf removing submodule 1 year ago
8x13.bdf removing submodule 1 year ago
8x13B.bdf removing submodule 1 year ago
8x13O.bdf removing submodule 1 year ago
9x15.bdf removing submodule 1 year ago
9x15B.bdf removing submodule 1 year ago
9x18.bdf removing submodule 1 year ago
9x18B.bdf removing submodule 1 year ago
10x20.bdf removing submodule 1 year ago
AUTHORS removing submodule 1 year ago
README removing submodule 1 year ago
README.md removing submodule 1 year ago
clR6x12.bdf removing submodule 1 year ago
helvR12.bdf removing submodule 1 year ago
texgyre-27.bdf removing submodule 1 year ago
tom-thumb.bdf removing submodule 1 year ago

README.md

Provided fonts

These are BDF fonts, a simple bitmap font-format that can be created by many font tools. Given that these are bitmap fonts, they will look good on very low resolution screens such as the LED displays.

Fonts in this directory (except tom-thumb.bdf) are public domain (see the README) and help you to get started with the font support in the API or the text-util from the utils/ directory.

Tom-Thumb.bdf is included in this directory under MIT license. Tom-thumb.bdf was created by @robey and originally published at https://robey.lag.net/2010/01/23/tiny-monospace-font.html

The texguire-27.bdf font was created using the otf2bdf tool from the TeX Gyre font.

otf2bdf -v -o texgyre-27.bdf -r 72 -p 27 texgyreadventor-regular.otf

Create your own

Fonts are in a human readable and editbable *.bdf format, but unless you like reading and writing pixels in hex, generating them is probably easier :)

You can use any font-editor to generate a BDF font or use the conversion tool otf2bdf to create one from some other font format.

Here is an example how you could create a 30pixel high BDF font from some TrueType font:

otf2bdf -v -o myfont.bdf -r 72 -p 30 /path/to/font-Bold.ttf

Getting otf2bdf

Installing the tool should be fairly straight-foward

sudo apt-get install otf2bdf

Compiling otf2bdf

If you like to compile otf2bdf, you might notice that the configure script uses some old way of getting the freetype configuration. There does not seem to be much activity on the mature code, so let's patch that first:

sudo apt-get install -y libfreetype6-dev pkg-config autoconf
git clone https://github.com/jirutka/otf2bdf.git   # check it out
cd otf2bdf
patch -p1 <<"EOF"
--- a/configure.in
+++ b/configure.in
@@ -5,8 +5,8 @@ AC_INIT(otf2bdf.c)
 AC_PROG_CC

 OLDLIBS=$LIBS
-LIBS="$LIBS `freetype-config --libs`"
-CPPFLAGS="$CPPFLAGS `freetype-config --cflags`"
+LIBS="$LIBS `pkg-config freetype2 --libs`"
+CPPFLAGS="$CPPFLAGS `pkg-config freetype2 --cflags`"
 AC_CHECK_LIB(freetype, FT_Init_FreeType, LIBS="$LIBS -lfreetype",[
              AC_MSG_ERROR([Can't find Freetype library! Compile FreeType first.])])
 AC_SUBST(LIBS)
EOF

autoconf       # rebuild configure script
./configure    # run configure
make           # build the software
sudo make install   # install it