Path: blob/master/externals/pear-figlet/docs/README.TXT
13450 views
FIGlet project home page: http://www.figlet.org/1You can download FIGlet fonts from: ftp://ftp.figlet.org/pub/figlet/fonts/2Project home page (Russian): http://bolknote.ru/files/figlet/34Notes:51. There are no support flc and vertical smushing.62. But horizontal smushing is supported.73. Default character (0x00) is supported.84. German symbols are supported.95. It is supported Unicode as %uHHHH, HHHH - a hex code of a character (UCS-2).107. RTL and LTR text directions are suppoted.118. Windows and Unix font formats are supported.129. Incomplete fonts are supported (for example dwhistled.flf).1310. Gzipped fonts supported as .flf.gz (zlib PHP extension required)1411. ZIPed fonts supported (ZIP PHP extension required)15`16Usage:1718include_once 'Text/Figlet.php';1920$figlet = new Text_Figlet();21if (PEAR::isError($error = $figlet->LoadFont('slant.flf'))) {22echo 'Error: ', $error->getMessage();23} else {24echo $figlet->LineEcho("Hello, world!");25}2627