Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont
- Timestamp:
- 03/12/25 08:07:22 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont
v6 v7 2 2 Reads a font file into memory. 3 3 4 {{{ 4 {{{#!c++ 5 5 int ReadFont(int nFont, const string& strFilename); 6 6 … … 22 22 == Examples == 23 23 24 {{{ 24 {{{#!c++ 25 25 string strFontFile = "/mnt/nand/fonts/Font788_8x2.fnt"; 26 26 ReadFont(11, strFontFile); 27 27 }}} 28 28 29 {{{ 29 {{{#!c++ 30 30 ReadFont(11, "/mnt/nand/fonts/Font788_8x2.fnt"); 31 31 }}}