Commit e5c6a35ebc30c6f29dd45fb6cfd7339007d95f58 Parent: 32b29ee6e3f2c5abf03e964bbcd37f99640cf6b0 Author: mcol <mcol@posteo.net> Date: 2020-10-27 14:54:49 +0000 Committer: mcol <mcol@posteo.net> Committed: 2020-10-27 14:54:49 +0000 add readme
readme.rst Added
@@ -0,0 +1,43 @@ +██ ██ ████ ████ ████ ████ +██ ██ ██ ██████ ██ ██ ██ +██████ ██████ ████████ ██ ████████ ██ ████████ +██ ██ ██ ██ ██ ██ ██ ██ ██ +██ ██ ██ ██ ██ ██ ██ ██ ██ +██████ ██████ ██ ████████ ██ ██████ ██ + + +Convert BDF bitmap fonts to flf FIGfonts for figlet. + + +Usage +----- + +bdf2flf simply takes BDF data from stdin and outputs flf data to stdout: + +$ bdf2flf < myfont.bdf > myfont.flf + +By default, the pixels that form the letters are represented by '#', with the +spaces represented by ' '. This can be changed using other tools: + +$ bdf2flf < Tamzen5x9r.bdf | sed 's/#/██/g; s/ / /g' > Tamzen5x9r.flf + +This last example is what was used the make the header above (Tamzen font: +https://github.com/sunaku/tamzen-font). + + +To install +---------- + +$ make +$ sudo make install + + +To uninstall +------------ + +$ sudo make uninstall + + +Contact +------- +Email me @ mcol@posteo.net for questions or patches.