font md construction

This commit is contained in:
olikraus 2015-11-16 20:50:02 +01:00
parent eae419d251
commit 479bebd2f9
9 changed files with 685 additions and 11 deletions

View File

@ -18,8 +18,9 @@ ASM2 = $(SRC2:.c=.s)
build1: $(SRC1)
$(CC) $(LDFLAGS) $(SRC1) -o build1
./build1
build2: $(OBJ2)
build2: build1 $(OBJ2)
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJ2) -o build2
clean:

View File

@ -128,6 +128,7 @@ int insert_into_file(const char *filename, const char *text, const char *start_l
struct groupinfo
{
char *groupname;
char *reference;
char *mdfile;
char *mdprefixfile;
};
@ -151,14 +152,13 @@ typedef void (*cbfn_t)(int i, int fm, char *fms, int bm, char *bms, int mm, char
struct groupinfo gi[] = {
{ "U8glib", "", "" },
{ "X11", "", "" },
{ "fontstruct", "", "" },
{ "cu12", "", "" },
{ "profont", "", "" }, /* 4 */
{ "adobe", "", "" },
{ "unifont", "", "" }, /* 6 */
{ "intlfont", "", "" }, /* 7 */
{ "u8glib", "fntgrpu8g", "fntgrpu8g.md", "fntgrpu8g.pre" },
{ "X11", "fntgrpx11", "fntgrpx11.md", "fntgrpx11.pre" },
{ "fontstruct", "fntgrpfontstruct", "fntgrpfontstruct.md", "fntgrpfontstruct.pre" },
{ "cu12", "fntgrpcu12", "fntgrpcu12.md", "fntgrpcu12.pre" },
{ "profont", "fntgrpprofont", "fntgrpprofont.md", "fntgrpprofont.pre" }, /* 4 */
{ "adobex11", "fntgrpadobex11", "fntgrpadobex11.md", "fntgrpadobex11.pre" },
{ "unifont", "fntgrpunifont", "fntgrpunifont.md", "fntgrpunifont.pre" }, /* 6 */
};
#define BM_T 1 /* Transparent = build mode 0 proportional */
@ -238,8 +238,6 @@ struct fontinfo fi[] = {
$1f600-$1f64f emoticons
*/
{ 0, "unifont.bdf", "unifont", 6, 0, BM_T, FM_C, MM_C, "32-255,$20a0-$20bf,$2103,$2109,$2126,$2190-$21bb,$21d0-$21d9,$21e6-$21e9,$23e9-$23fa,$2580-$261f,$2654-$2667,$2680-$2685,$2713-$2718,$274f-$2752", "_symbols" },
//{ 0, "gb16fs.bdf", "gb16fs", 7, 0, BM_T, FM_C, MM_C, "32-$ffff", "" },
//{ 0, "gb16st.bdf", "gb16st", 7, 0, BM_T, FM_C, MM_C, "32-$ffff", "" },
{ 0, "courB08.bdf", "courB08", 5, 0, BM_T|BM_M, FM_C, MM_F|MM_R|MM_N, "", "" },
{ 0, "courB10.bdf", "courB10", 5, 0, BM_T|BM_M, FM_C, MM_F|MM_R|MM_N, "", "" },
{ 0, "courB12.bdf", "courB12", 5, 0, BM_T|BM_M, FM_C, MM_F|MM_R|MM_N, "", "" },
@ -286,6 +284,9 @@ char bdf_cmd[2048];
char font_prototype[2048];
char tga_filename[2048];
char convert_cmd[2048];
int current_font_group_index;
char current_font_name[256] = "";
FILE *current_md_file;
#ifdef BUILD2
@ -519,6 +520,43 @@ void fontlist_name(int i, int fm, char *fms, int bm, char *bms, int mm, char *mm
}
void generate_font_group_md(int i, int fm, char *fms, int bm, char *bms, int mm, char *mms)
{
static int _i = 0;
static int _fm = 0;
static int _bm = 0;
if ( fi[i].group == current_font_group_index )
{
if ( strcmp( current_font_name, fi[i].name ) != 0 )
{
strcpy(current_font_name, fi[i].name);
fprintf(current_md_file, "\n");
fprintf(current_md_file, "## %s\n", current_font_name);
printf("## %s\n", current_font_name);
}
else
{
if ( _i == i && _fm == fm && _bm == bm )
{
}
else
{
fprintf(current_md_file, "\n");
}
}
fprintf(current_md_file, "![fontpic/%s.png](fontpic/%s.png)\n", target_font_identifier, target_font_identifier);
_i = i;
_fm = fm;
_bm = bm;
printf( "%s %s\n", gi[current_font_group_index].mdfile, target_font_identifier);
}
}
void gen_font(int i, int fm, char *fms, int bm, char *bms, int mm, char *mms, cbfn_t cb )
{
@ -596,6 +634,24 @@ void do_font_loop(cbfn_t cb)
}
}
void do_font_groups(cbfn_t cb)
{
int cnt;
cnt = sizeof(gi)/sizeof(*gi);
for( current_font_group_index = 0; current_font_group_index < cnt; current_font_group_index++ )
{
file_copy(gi[current_font_group_index].mdprefixfile, gi[current_font_group_index].mdfile);
current_md_file = fopen(gi[current_font_group_index].mdfile, "a");
fprintf(current_md_file, "\n");
strcpy(current_font_name, ".");
do_font_loop(cb);
fclose(current_md_file);
}
}
int main(void)
{
//unlink(u8x8_fonts_filename);
@ -638,6 +694,10 @@ int main(void)
insert_into_file("../../../csrc/u8x8.h", u8x8_prototypes, "/* start font list */", "/* end font list */");
unlink("font.c");
do_font_groups(generate_font_group_md);
#endif
#ifdef BUILD2

View File

@ -0,0 +1,161 @@
**NOTE:** Fonts on this page will be available with v1.09 of u8glib.
# Reference
Fonts on this page are part of the [X11 distribution](http://www.x.org/).
X11 font sources are hosted [here](http://cgit.freedesktop.org/xorg/font/).
# Copyright
Copyright 1984-1989, 1994 Adobe Systems Incorporated.
Copyright 1988, 1994 Digital Equipment Corporation.
Adobe is a trademark of Adobe Systems Incorporated which may be
registered in certain jurisdictions.
Permission to use these trademarks is hereby granted only in
association with the images described in this file.
Permission to use, copy, modify, distribute and sell this software
and its documentation for any purpose and without fee is hereby
granted, provided that the above copyright notices appear in all
copies and that both those copyright notices and this permission
notice appear in supporting documentation, and that the names of
Adobe Systems and Digital Equipment Corporation not be used in
advertising or publicity pertaining to distribution of the software
without specific, written prior permission. Adobe Systems and
Digital Equipment Corporation make no representations about the
suitability of this software for any purpose. It is provided "as
is" without express or implied warranty.
Font Copyright Statement: "Copyright (c) 1984, 1987 Adobe Systems Incorporated. All Rights Reserved. Copyright (c) 1988, 1991 Digital Equipment Corporation. All Rights Reserved."
# Font Details
## courB
![fontpic/u8g_font_courB08.png](fontpic/u8g_font_courB08.png)![fontpic/u8g_font_courB08r.png](fontpic/u8g_font_courB08r.png)
![fontpic/u8g_font_courB10.png](fontpic/u8g_font_courB10.png)![fontpic/u8g_font_courB10r.png](fontpic/u8g_font_courB10r.png)
![fontpic/u8g_font_courB12.png](fontpic/u8g_font_courB12.png)![fontpic/u8g_font_courB12r.png](fontpic/u8g_font_courB12r.png)
![fontpic/u8g_font_courB14.png](fontpic/u8g_font_courB14.png)![fontpic/u8g_font_courB14r.png](fontpic/u8g_font_courB14r.png)
![fontpic/u8g_font_courB18.png](fontpic/u8g_font_courB18.png)![fontpic/u8g_font_courB18r.png](fontpic/u8g_font_courB18r.png)
![fontpic/u8g_font_courB24.png](fontpic/u8g_font_courB24.png)![fontpic/u8g_font_courB24r.png](fontpic/u8g_font_courB24r.png)![fontpic/u8g_font_courB24n.png](fontpic/u8g_font_courB24n.png)
## courR
![fontpic/u8g_font_courR08.png](fontpic/u8g_font_courR08.png)![fontpic/u8g_font_courR08r.png](fontpic/u8g_font_courR08r.png)
![fontpic/u8g_font_courR10.png](fontpic/u8g_font_courR10.png)![fontpic/u8g_font_courR10r.png](fontpic/u8g_font_courR10r.png)
![fontpic/u8g_font_courR12.png](fontpic/u8g_font_courR12.png)![fontpic/u8g_font_courR12r.png](fontpic/u8g_font_courR12r.png)
![fontpic/u8g_font_courR14.png](fontpic/u8g_font_courR14.png)![fontpic/u8g_font_courR14r.png](fontpic/u8g_font_courR14r.png)
![fontpic/u8g_font_courR18.png](fontpic/u8g_font_courR18.png)![fontpic/u8g_font_courR18r.png](fontpic/u8g_font_courR18r.png)
![fontpic/u8g_font_courR24.png](fontpic/u8g_font_courR24.png)![fontpic/u8g_font_courR24r.png](fontpic/u8g_font_courR24r.png)![fontpic/u8g_font_courR24n.png](fontpic/u8g_font_courR24n.png)
## helvB
![fontpic/u8g_font_helvB08.png](fontpic/u8g_font_helvB08.png)![fontpic/u8g_font_helvB08r.png](fontpic/u8g_font_helvB08r.png)![fontpic/u8g_font_helvB08n.png](fontpic/u8g_font_helvB08n.png)
![fontpic/u8g_font_helvB10.png](fontpic/u8g_font_helvB10.png)![fontpic/u8g_font_helvB10r.png](fontpic/u8g_font_helvB10r.png)![fontpic/u8g_font_helvB10n.png](fontpic/u8g_font_helvB10n.png)
![fontpic/u8g_font_helvB12.png](fontpic/u8g_font_helvB12.png)![fontpic/u8g_font_helvB12r.png](fontpic/u8g_font_helvB12r.png)![fontpic/u8g_font_helvB12n.png](fontpic/u8g_font_helvB12n.png)
![fontpic/u8g_font_helvB14.png](fontpic/u8g_font_helvB14.png)![fontpic/u8g_font_helvB14r.png](fontpic/u8g_font_helvB14r.png)![fontpic/u8g_font_helvB14n.png](fontpic/u8g_font_helvB14n.png)
![fontpic/u8g_font_helvB18.png](fontpic/u8g_font_helvB18.png)![fontpic/u8g_font_helvB18r.png](fontpic/u8g_font_helvB18r.png)![fontpic/u8g_font_helvB18n.png](fontpic/u8g_font_helvB18n.png)
![fontpic/u8g_font_helvB24.png](fontpic/u8g_font_helvB24.png)![fontpic/u8g_font_helvB24r.png](fontpic/u8g_font_helvB24r.png)![fontpic/u8g_font_helvB24n.png](fontpic/u8g_font_helvB24n.png)
## helvR
![fontpic/u8g_font_helvR08.png](fontpic/u8g_font_helvR08.png)![fontpic/u8g_font_helvR08r.png](fontpic/u8g_font_helvR08r.png)![fontpic/u8g_font_helvR08n.png](fontpic/u8g_font_helvR08n.png)
![fontpic/u8g_font_helvR10.png](fontpic/u8g_font_helvR10.png)![fontpic/u8g_font_helvR10r.png](fontpic/u8g_font_helvR10r.png)![fontpic/u8g_font_helvR10n.png](fontpic/u8g_font_helvR10n.png)
![fontpic/u8g_font_helvR12.png](fontpic/u8g_font_helvR12.png)![fontpic/u8g_font_helvR12r.png](fontpic/u8g_font_helvR12r.png)![fontpic/u8g_font_helvR12n.png](fontpic/u8g_font_helvR12n.png)
![fontpic/u8g_font_helvR14.png](fontpic/u8g_font_helvR14.png)![fontpic/u8g_font_helvR14r.png](fontpic/u8g_font_helvR14r.png)![fontpic/u8g_font_helvR14n.png](fontpic/u8g_font_helvR14n.png)
![fontpic/u8g_font_helvR18.png](fontpic/u8g_font_helvR18.png)![fontpic/u8g_font_helvR18r.png](fontpic/u8g_font_helvR18r.png)![fontpic/u8g_font_helvR18n.png](fontpic/u8g_font_helvR18n.png)
![fontpic/u8g_font_helvR24.png](fontpic/u8g_font_helvR24.png)![fontpic/u8g_font_helvR24r.png](fontpic/u8g_font_helvR24r.png)![fontpic/u8g_font_helvR24n.png](fontpic/u8g_font_helvR24n.png)
## ncenB
![fontpic/u8g_font_ncenB08.png](fontpic/u8g_font_ncenB08.png)![fontpic/u8g_font_ncenB08r.png](fontpic/u8g_font_ncenB08r.png)
![fontpic/u8g_font_ncenB10.png](fontpic/u8g_font_ncenB10.png)![fontpic/u8g_font_ncenB10r.png](fontpic/u8g_font_ncenB10r.png)
![fontpic/u8g_font_ncenB12.png](fontpic/u8g_font_ncenB12.png)![fontpic/u8g_font_ncenB12r.png](fontpic/u8g_font_ncenB12r.png)
![fontpic/u8g_font_ncenB14.png](fontpic/u8g_font_ncenB14.png)![fontpic/u8g_font_ncenB14r.png](fontpic/u8g_font_ncenB14r.png)
![fontpic/u8g_font_ncenB18.png](fontpic/u8g_font_ncenB18.png)![fontpic/u8g_font_ncenB18r.png](fontpic/u8g_font_ncenB18r.png)
![fontpic/u8g_font_ncenB24.png](fontpic/u8g_font_ncenB24.png)![fontpic/u8g_font_ncenB24r.png](fontpic/u8g_font_ncenB24r.png)![fontpic/u8g_font_ncenB24n.png](fontpic/u8g_font_ncenB24n.png)
## ncenR
![fontpic/u8g_font_ncenR08.png](fontpic/u8g_font_ncenR08.png)![fontpic/u8g_font_ncenR08r.png](fontpic/u8g_font_ncenR08r.png)
![fontpic/u8g_font_ncenR10.png](fontpic/u8g_font_ncenR10.png)![fontpic/u8g_font_ncenR10r.png](fontpic/u8g_font_ncenR10r.png)
![fontpic/u8g_font_ncenR12.png](fontpic/u8g_font_ncenR12.png)![fontpic/u8g_font_ncenR12r.png](fontpic/u8g_font_ncenR12r.png)
![fontpic/u8g_font_ncenR14.png](fontpic/u8g_font_ncenR14.png)![fontpic/u8g_font_ncenR14r.png](fontpic/u8g_font_ncenR14r.png)
![fontpic/u8g_font_ncenR18.png](fontpic/u8g_font_ncenR18.png)![fontpic/u8g_font_ncenR18r.png](fontpic/u8g_font_ncenR18r.png)
![fontpic/u8g_font_ncenR24.png](fontpic/u8g_font_ncenR24.png)![fontpic/u8g_font_ncenR24r.png](fontpic/u8g_font_ncenR24r.png)![fontpic/u8g_font_ncenR24n.png](fontpic/u8g_font_ncenR24n.png)
## timB
![fontpic/u8g_font_timB08.png](fontpic/u8g_font_timB08.png)![fontpic/u8g_font_timB08r.png](fontpic/u8g_font_timB08r.png)
![fontpic/u8g_font_timB10.png](fontpic/u8g_font_timB10.png)![fontpic/u8g_font_timB10r.png](fontpic/u8g_font_timB10r.png)
![fontpic/u8g_font_timB12.png](fontpic/u8g_font_timB12.png)![fontpic/u8g_font_timB12r.png](fontpic/u8g_font_timB12r.png)
![fontpic/u8g_font_timB14.png](fontpic/u8g_font_timB14.png)![fontpic/u8g_font_timB14r.png](fontpic/u8g_font_timB14r.png)
![fontpic/u8g_font_timB18.png](fontpic/u8g_font_timB18.png)![fontpic/u8g_font_timB18r.png](fontpic/u8g_font_timB18r.png)
![fontpic/u8g_font_timB24.png](fontpic/u8g_font_timB24.png)![fontpic/u8g_font_timB24r.png](fontpic/u8g_font_timB24r.png)![fontpic/u8g_font_timB24n.png](fontpic/u8g_font_timB24n.png)
## timR
![fontpic/u8g_font_timR08.png](fontpic/u8g_font_timR08.png)![fontpic/u8g_font_timR08r.png](fontpic/u8g_font_timR08r.png)
![fontpic/u8g_font_timR10.png](fontpic/u8g_font_timR10.png)![fontpic/u8g_font_timR10r.png](fontpic/u8g_font_timR10r.png)
![fontpic/u8g_font_timR12.png](fontpic/u8g_font_timR12.png)![fontpic/u8g_font_timR12r.png](fontpic/u8g_font_timR12r.png)
![fontpic/u8g_font_timR14.png](fontpic/u8g_font_timR14.png)![fontpic/u8g_font_timR14r.png](fontpic/u8g_font_timR14r.png)
![fontpic/u8g_font_timR18.png](fontpic/u8g_font_timR18.png)![fontpic/u8g_font_timR18r.png](fontpic/u8g_font_timR18r.png)
![fontpic/u8g_font_timR24.png](fontpic/u8g_font_timR24.png)![fontpic/u8g_font_timR24r.png](fontpic/u8g_font_timR24r.png)![fontpic/u8g_font_timR24n.png](fontpic/u8g_font_timR24n.png)
## symb
![fontpic/u8g_font_symb08.png](fontpic/u8g_font_symb08.png)![fontpic/u8g_font_symb08r.png](fontpic/u8g_font_symb08r.png)
![fontpic/u8g_font_symb10.png](fontpic/u8g_font_symb10.png)![fontpic/u8g_font_symb10r.png](fontpic/u8g_font_symb10r.png)
![fontpic/u8g_font_symb12.png](fontpic/u8g_font_symb12.png)![fontpic/u8g_font_symb12r.png](fontpic/u8g_font_symb12r.png)
![fontpic/u8g_font_symb14.png](fontpic/u8g_font_symb14.png)![fontpic/u8g_font_symb14r.png](fontpic/u8g_font_symb14r.png)
![fontpic/u8g_font_symb18.png](fontpic/u8g_font_symb18.png)![fontpic/u8g_font_symb18r.png](fontpic/u8g_font_symb18r.png)
![fontpic/u8g_font_symb24.png](fontpic/u8g_font_symb24.png)![fontpic/u8g_font_symb24r.png](fontpic/u8g_font_symb24r.png)

View File

@ -0,0 +1,44 @@
# Reference
Name: **cu12**
Font download location is [here](http://sofia.nmsu.edu/~mleisher/Software/cu/).
# Copyright
Font Copyright Statement: (c) 2001 Computing Research Lab, New Mexico State University.
License (from bdf file):
Copyright 2002 Computing Research Labs, New Mexico State University
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE COMPUTING RESEARCH LAB
OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Font Details
![fontpic/u8g_font_cu12.png](fontpic/u8g_font_cu12.png)
![fontpic/u8g_font_cu12_67_75.png](fontpic/u8g_font_cu12_67_75.png)
![fontpic/u8g_font_cu12_75r.png](fontpic/u8g_font_cu12_75r.png)

View File

@ -0,0 +1,167 @@
This page contains fonts from http://fontstruct.com.
# Baby
## Reference
Link: http://fontstruct.com/fontstructions/show/baby_4
## Copyright
The `FontStruction` "Baby"
(http://fontstruct.com/fontstructions/show/35496) by "mrsbarrett" is
licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
## Font Details
![fontpic/u8g_font_baby.png](fontpic/u8g_font_baby.png)
![fontpic/u8g_font_babyr.png](fontpic/u8g_font_babyr.png)
![fontpic/u8g_font_babyn.png](fontpic/u8g_font_babyn.png)
# Blipfest 07
## Reference
Link: http://fontstruct.com/fontstructions/show/blipfest_07
## Copyright
The `FontStruction` "Blipfest 07"
(http://fontstruct.com/fontstructions/show/45675) by "cwillmor" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
## Font Details
![fontpic/u8g_font_blipfest_07.png](fontpic/u8g_font_blipfest_07.png)
![fontpic/u8g_font_blipfest_07r.png](fontpic/u8g_font_blipfest_07r.png)
![fontpic/u8g_font_blipfest_07n.png](fontpic/u8g_font_blipfest_07n.png)
# Chikita
## Reference
Link: http://fontstruct.com/fontstructions/show/chikita
## Copyright
The `FontStruction` "Chikita"
(http://fontstruct.com/Ffontstructions/show/52325) by "southernmedia" is
licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
"Chikita" was originally cloned (copied) from the `FontStruction`
"pixelspace 5x5" (http://fontstruct.com/FontStructions/show/42130) by David
Chiu, which is licensed under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
## Font Details
![fontpic/u8g_font_chikita.png](fontpic/u8g_font_chikita.png)
![fontpic/u8g_font_chikitar.png](fontpic/u8g_font_chikitar.png)
![fontpic/u8g_font_chikitan.png](fontpic/u8g_font_chikitan.png)
# Lucasfont Alternate
## Reference
Link: http://fontstruct.com/fontstructions/show/lucasfont_alternate
## Copyright
The `FontStruction` "Lucasfont Alternate"
(http://fontstruct.com/fontstructions/show/653734) by Patrick Lauke is licensed
under a Creative Commons Attribution license
(http://creativecommons.org/licenses/by/3.0/).
"Lucasfont Alternate" was originally cloned (copied) from the `FontStruction`
"Lucasfont" (http://fontstruct.com/FontStructions/show/653577) by Patrick
Lauke, which is licensed under a Creative Commons Attribution license
(http://creativecommons.org/licenses/by/3.0/).
## Font Details
![fontpic/u8g_font_lucasfont_alternate.png](fontpic/u8g_font_lucasfont_alternate.png)
![fontpic/u8g_font_lucasfont_alternater.png](fontpic/u8g_font_lucasfont_alternater.png)
![fontpic/u8g_font_lucasfont_alternaten.png](fontpic/u8g_font_lucasfont_alternaten.png)
# P01type
## Reference
Link: http://fontstruct.com/fontstructions/show/p01type
## Copyright
The `FontStruction` "P01type"
(http://fontstruct.com/fontstructions/show/668719) by Patrick Lauke is licensed
under a Creative Commons Attribution license
(http://creativecommons.org/licenses/by/3.0/).
## Font Details
![fontpic/u8g_font_p01type.png](fontpic/u8g_font_p01type.png)
![fontpic/u8g_font_p01typer.png](fontpic/u8g_font_p01typer.png)
![fontpic/u8g_font_p01typen.png](fontpic/u8g_font_p01typen.png)
# Pixelle (Micro)
## Reference
Link: http://fontstruct.com/fontstructions/show/pixelle_micro
## Copyright
The `FontStruction` "Pixelle (Micro)"
(http://fontstruct.com/fontstructions/show/91737) by "rdonaghy" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
## Font Details
![fontpic/u8g_font_pixelle_micro.png](fontpic/u8g_font_pixelle_micro.png)
![fontpic/u8g_font_pixelle_micror.png](fontpic/u8g_font_pixelle_micror.png)
![fontpic/u8g_font_pixelle_micron.png](fontpic/u8g_font_pixelle_micron.png)
# Robot de Niro
## Reference
Link: http://fontstruct.com/fontstructions/show/robot_de_niro_2
## Copyright
The `FontStruction` "Robot de Niro"
(http://fontstruct.com/fontstructions/show/52809) by "BMoser" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
## Font Details
![fontpic/u8g_font_robot_de_niro.png](fontpic/u8g_font_robot_de_niro.png)
![fontpic/u8g_font_robot_de_niror.png](fontpic/u8g_font_robot_de_niror.png)
![fontpic/u8g_font_robot_de_niron.png](fontpic/u8g_font_robot_de_niron.png)
# Trixel Square
## Reference
Link: http://fontstruct.com/fontstructions/show/trixel_square_1
## Copyright
The `FontStruction` "Trixel Square"
(http://fontstruct.com/fontstructions/show/54103) by "julischka" is licensed
under a Creative Commons Attribution Share Alike license
(http://creativecommons.org/licenses/by-sa/3.0/).
## Font Details
![fontpic/u8g_font_trixel_square.png](fontpic/u8g_font_trixel_square.png)
![fontpic/u8g_font_trixel_squarer.png](fontpic/u8g_font_trixel_squarer.png)
![fontpic/u8g_font_trixel_squaren.png](fontpic/u8g_font_trixel_squaren.png)

View File

@ -0,0 +1,62 @@
# Reference
`ProFont` has been downloaded from http://tobiasjung.name/profont/.
# Copyright
```
ProFont
MIT License
Copyright (c) 2014 Carl Osterwald, Stephen C. Gilardi, Andrew Welch
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
```
# Font Details
## 6
![fontpic/u8g_font_profont10.png](fontpic/u8g_font_profont10.png)
![fontpic/u8g_font_profont10r.png](fontpic/u8g_font_profont10r.png)
## 7
![fontpic/u8g_font_profont11.png](fontpic/u8g_font_profont11.png)
![fontpic/u8g_font_profont11r.png](fontpic/u8g_font_profont11r.png)
## 8
![fontpic/u8g_font_profont12.png](fontpic/u8g_font_profont12.png)
![fontpic/u8g_font_profont12r.png](fontpic/u8g_font_profont12r.png)
## 9
![fontpic/u8g_font_profont15.png](fontpic/u8g_font_profont15.png)
![fontpic/u8g_font_profont15r.png](fontpic/u8g_font_profont15r.png)
## 11
![fontpic/u8g_font_profont17.png](fontpic/u8g_font_profont17.png)
![fontpic/u8g_font_profont17r.png](fontpic/u8g_font_profont17r.png)
## 14
![fontpic/u8g_font_profont22.png](fontpic/u8g_font_profont22.png)
![fontpic/u8g_font_profont22r.png](fontpic/u8g_font_profont22r.png)
## 19
![fontpic/u8g_font_profont29.png](fontpic/u8g_font_profont29.png)
![fontpic/u8g_font_profont29r.png](fontpic/u8g_font_profont29r.png)

View File

@ -0,0 +1,22 @@
# Reference
These fonts are part of u8glib.
# Copyright
Public domain, created by the author of u8glib and u8g2.
# Font Details
## m2icon
![fontpic/u8g_font_m2icon_5.png](fontpic/u8g_font_m2icon_5.png)
![fontpic/u8g_font_m2icon_7.png](fontpic/u8g_font_m2icon_7.png)
![fontpic/u8g_font_m2icon_9.png](fontpic/u8g_font_m2icon_9.png)
## u8glib\_4
![fontpic/u8g_font_u8glib_4.png](fontpic/u8g_font_u8glib_4.png)
![fontpic/u8g_font_u8glib_4r.png](fontpic/u8g_font_u8glib_4r.png)

View File

@ -0,0 +1,53 @@
# Reference
Name: **GNU Unifont**
Unifont has been updated for U8glib v1.17.
Download location: [ftp://ftp.gnu.org/gnu/unifont/unifont-7.0.06/](ftp://ftp.gnu.org/gnu/unifont/unifont-7.0.06/)
The Unifont project page is here: https://savannah.gnu.org/projects/unifont.
# Copyright
Font Copyright Statement:
"Copyright (C) 2014 Roman Czyborra, Paul Hardy, Qianqian Fang, Andrew Miller, et al. Licensed under the GNU General Public License; either version 2, or (at your option) a later version, with the GNU Font Embedding Exception."
License: http://unifoundry.com/LICENSE.txt
GNU Font Embedding Exception: http://www.gnu.org/licenses/gpl-faq.html#FontException
# Font Details
![fontpic/u8g_font_unifont.png](fontpic/u8g_font_unifont.png)
![fontpic/u8g_font_unifontr.png](fontpic/u8g_font_unifontr.png)
![fontpic/u8g_font_unifont_2_3.png](fontpic/u8g_font_unifont_2_3.png)
![fontpic/u8g_font_unifont_4_5.png](fontpic/u8g_font_unifont_4_5.png)
![fontpic/u8g_font_unifont_0_8.png](fontpic/u8g_font_unifont_0_8.png)
![fontpic/u8g_font_unifont_8_9.png](fontpic/u8g_font_unifont_8_9.png)
![fontpic/u8g_font_unifont_12_13.png](fontpic/u8g_font_unifont_12_13.png)
![fontpic/u8g_font_unifont_18_19.png](fontpic/u8g_font_unifont_18_19.png)
![fontpic/u8g_font_unifont_67_75.png](fontpic/u8g_font_unifont_67_75.png)
![fontpic/u8g_font_unifont_75r.png](fontpic/u8g_font_unifont_75r.png)
![fontpic/u8g_font_unifont_72_73.png](fontpic/u8g_font_unifont_72_73.png)
![fontpic/u8g_font_unifont_76.png](fontpic/u8g_font_unifont_76.png)
![fontpic/u8g_font_unifont_77.png](fontpic/u8g_font_unifont_77.png)
![fontpic/u8g_font_unifont_78_79.png](fontpic/u8g_font_unifont_78_79.png)
![fontpic/u8g_font_unifont_86.png](fontpic/u8g_font_unifont_86.png)

View File

@ -0,0 +1,104 @@
# Reference
Fonts on this page are part of the [X11 distribution](http://www.x.org/). On a Linux client these fonts are often located here: `/usr/share/fonts/X11/misc`.
X11 font sources are hosted [here](http://cgit.freedesktop.org/xorg/font/).
# Copyright
Copyright information is available on the [x.org](http://www.x.org/archive/X11R7.5/doc/LICENSE.html) server.
Copyright string from the font file: "Public domain font. Share and enjoy." or "These glyphs are unencumbered"
# Font Details
## cursor
![fontpic/u8g_font_cursor.png](fontpic/u8g_font_cursor.png)
![fontpic/u8g_font_cursorr.png](fontpic/u8g_font_cursorr.png)
## micro
![fontpic/u8g_font_micro.png](fontpic/u8g_font_micro.png)
## 4x6
![fontpic/u8g_font_4x6.png](fontpic/u8g_font_4x6.png) ![fontpic/u8g_font_4x6r.png](fontpic/u8g_font_4x6r.png)
## 5x7
![fontpic/u8g_font_5x7.png](fontpic/u8g_font_5x7.png) ![fontpic/u8g_font_5x7r.png](fontpic/u8g_font_5x7r.png)
## 5x8
![fontpic/u8g_font_5x8.png](fontpic/u8g_font_5x8.png) ![fontpic/u8g_font_5x8r.png](fontpic/u8g_font_5x8r.png)
## 6x10
![fontpic/u8g_font_6x10.png](fontpic/u8g_font_6x10.png) ![fontpic/u8g_font_6x10r.png](fontpic/u8g_font_6x10r.png)
## 6x12
![fontpic/u8g_font_6x12.png](fontpic/u8g_font_6x12.png) ![fontpic/u8g_font_6x12r.png](fontpic/u8g_font_6x12r.png)
![fontpic/u8g_font_6x12_67_75.png](fontpic/u8g_font_6x12_67_75.png) ![fontpic/u8g_font_6x12_78_79.png](fontpic/u8g_font_6x12_78_79.png)
![fontpic/u8g_font_6x12_75r.png](fontpic/u8g_font_6x12_75r.png)
## 6x13
![fontpic/u8g_font_6x13.png](fontpic/u8g_font_6x13.png) ![fontpic/u8g_font_6x13r.png](fontpic/u8g_font_6x13r.png)
![fontpic/u8g_font_6x13B.png](fontpic/u8g_font_6x13B.png) ![fontpic/u8g_font_6x13Br.png](fontpic/u8g_font_6x13Br.png)
![fontpic/u8g_font_6x13O.png](fontpic/u8g_font_6x13O.png) ![fontpic/u8g_font_6x13Or.png](fontpic/u8g_font_6x13Or.png)
![fontpic/u8g_font_6x13_67_75.png](fontpic/u8g_font_6x13_67_75.png) ![fontpic/u8g_font_6x13_78_79.png](fontpic/u8g_font_6x13_78_79.png)
![fontpic/u8g_font_6x13_75r.png](fontpic/u8g_font_6x13_75r.png)
## 7x13
![fontpic/u8g_font_7x13.png](fontpic/u8g_font_7x13.png) ![fontpic/u8g_font_7x13r.png](fontpic/u8g_font_7x13r.png)
![fontpic/u8g_font_7x13B.png](fontpic/u8g_font_7x13B.png) ![fontpic/u8g_font_7x13Br.png](fontpic/u8g_font_7x13Br.png)
![fontpic/u8g_font_7x13O.png](fontpic/u8g_font_7x13O.png) ![fontpic/u8g_font_7x13Or.png](fontpic/u8g_font_7x13Or.png)
![fontpic/u8g_font_7x13_67_75.png](fontpic/u8g_font_7x13_67_75.png)
![fontpic/u8g_font_7x13_75r.png](fontpic/u8g_font_7x13_75r.png)
## 7x14
![fontpic/u8g_font_7x14.png](fontpic/u8g_font_7x14.png) ![fontpic/u8g_font_7x14r.png](fontpic/u8g_font_7x14r.png)
![fontpic/u8g_font_7x14B.png](fontpic/u8g_font_7x14B.png) ![fontpic/u8g_font_7x14Br.png](fontpic/u8g_font_7x14Br.png)
## 8x13
![fontpic/u8g_font_8x13.png](fontpic/u8g_font_8x13.png) ![fontpic/u8g_font_8x13r.png](fontpic/u8g_font_8x13r.png)
![fontpic/u8g_font_8x13B.png](fontpic/u8g_font_8x13B.png) ![fontpic/u8g_font_8x13Br.png](fontpic/u8g_font_8x13Br.png)
![fontpic/u8g_font_8x13O.png](fontpic/u8g_font_8x13O.png) ![fontpic/u8g_font_8x13Or.png](fontpic/u8g_font_8x13Or.png)
![fontpic/u8g_font_8x13_67_75.png](fontpic/u8g_font_8x13_67_75.png)
![fontpic/u8g_font_8x13_75r.png](fontpic/u8g_font_8x13_75r.png)
## 9x15
![fontpic/u8g_font_9x15.png](fontpic/u8g_font_9x15.png) ![fontpic/u8g_font_9x15r.png](fontpic/u8g_font_9x15r.png)
![fontpic/u8g_font_9x15B.png](fontpic/u8g_font_9x15B.png) ![fontpic/u8g_font_9x15Br.png](fontpic/u8g_font_9x15Br.png)
![fontpic/u8g_font_9x15_67_75.png](fontpic/u8g_font_9x15_67_75.png) ![fontpic/u8g_font_9x15_78_79.png](fontpic/u8g_font_9x15_78_79.png)
![fontpic/u8g_font_9x15_75r.png](fontpic/u8g_font_9x15_75r.png)
## 9x18
![fontpic/u8g_font_9x18.png](fontpic/u8g_font_9x18.png) ![fontpic/u8g_font_9x18r.png](fontpic/u8g_font_9x18r.png)
![fontpic/u8g_font_9x18B.png](fontpic/u8g_font_9x18B.png) ![fontpic/u8g_font_9x18Br.png](fontpic/u8g_font_9x18Br.png)
![fontpic/u8g_font_9x18_67_75.png](fontpic/u8g_font_9x18_67_75.png) ![fontpic/u8g_font_9x18_78_79.png](fontpic/u8g_font_9x18_78_79.png)
![fontpic/u8g_font_9x18_75r.png](fontpic/u8g_font_9x18_75r.png)
## 10x20
![fontpic/u8g_font_10x20.png](fontpic/u8g_font_10x20.png) ![fontpic/u8g_font_10x20r.png](fontpic/u8g_font_10x20r.png)
![fontpic/u8g_font_10x20_67_75.png](fontpic/u8g_font_10x20_67_75.png) ![fontpic/u8g_font_10x20_78_79.png](fontpic/u8g_font_10x20_78_79.png)
![fontpic/u8g_font_10x20_75r.png](fontpic/u8g_font_10x20_75r.png)