mirror of
https://gitee.com/Lamdonn/varch.git
synced 2026-01-01 03:12:08 +08:00
31 lines
751 B
Markdown
31 lines
751 B
Markdown
## Introduction
|
|
|
|
ArtFont is a simple character art module that forms artistic characters with characters.
|
|
|
|
## Interface
|
|
|
|
### Functions
|
|
|
|
```c
|
|
int ArtFont_print(char *string, char *buffer, int size);
|
|
```
|
|
|
|
Usage Example:
|
|
```c
|
|
ArtFont_print("varch", NULL, 0);
|
|
```
|
|
Result:
|
|
```
|
|
|
|
88
|
|
88
|
|
88
|
|
8b d8 ,adPPYYba, 8b,dPPYba, ,adPPYba, 88,dPPYba,
|
|
`8b d8' '' `Y8 88P' 'Y8 a8' '' 88P' '8a
|
|
`8b d8' ,adPPPPP88 88 8b 88 88
|
|
`8b,d8' 88, ,88 88 '8a, ,aa 88 88
|
|
'8' `'8bbdP'Y8 88 `'Ybbd8'' 88 88
|
|
|
|
|
|
```
|