Text-Renderer/README.md

37 lines
655 B
Markdown
Raw Normal View History

# vKVM TextRenderer
## Installation
Use the installation script provided in the Scripts repository
to install the full package.
Installing a single component is currently not supported.
2019-10-23 12:22:45 +02:00
## Target
2019-10-24 12:18:56 +02:00
TextRender build exports an interface target TextRender::TextRender.
2019-10-23 12:22:45 +02:00
2019-10-24 12:14:49 +02:00
This means that if TextRender has been installed on the Project Path, it
should be enough to do.
2019-10-23 12:22:45 +02:00
2019-10-29 12:50:43 +01:00
translate a string from terminal to the readable form of FLTK .
2019-10-24 12:14:49 +02:00
## Usage
mkdir build
cd build
cmake ..
make
## Example
2019-10-29 12:50:43 +01:00
TextRenderer textRenderer;
string bitmap = textRenderer.translate(testString);
textRenderer.outputInscreen(bitmap);