2 releases
Uses new Rust 2024
new 0.2.2 | Mar 31, 2025 |
---|---|
0.2.1 | Mar 31, 2025 |
0.1.0 |
|
#61 in Data formats
107 downloads per month
48KB
1.5K
SLoC
Glyphr
This is the successor (only spiritually) of libraster-sw. I wrote that library because all the alternatives were completely bloated and had too much features that I did not use. I just wanted it to be as fast as possible, while possibly maintaining an easy use.
Features
- Completely intuitive
- You decide how pixel are written on the screen
- No heap allocation
- Compile time font bitmaps generation
Roadmap
- Loading fonts.json from project root
- Generating what's specified in fonts.json
- Saving the bitmaps somewhere
- Generating the file(s) that the library will use
- Main functionalities, like rasterization...
- Clear and useful APIs
- General optimization and refactor (I already know I'll need it)
How To
First of all, in the project root, create a fonts
folder, then inside create a fonts.json
. The library expect an array of fonts, with some parameters. Here is an example:
[
{
"name": "poppins",
"path": "Poppins-Regular.ttf",
"px": 36.0,
"padding": 1,
"spread": 15.0,
"char_range": [33, 126]
}
]
It is kind of straightforward to use, but I'll exaplain it to you:
name
: a user-defined name that will be used to choose at runtime which font to usepath
: the path of the ttf file (relative toCargo.toml
)px
: size in pixel of the fontpadding
: space in pixel to leave between the glyph and the bitmap bordersspread
: distance in pixel that the SDF extends from the edges of each glyphchar_range
: au8
array of 2 elements, which defines which characters to generate
After creating this file, and placing the ttfs where you prefer, you can just build and the bitmaps will be created. For now there is no API's to use it so it's just generation. The generated files will only be useful inside the library itself.
Note
You can also define an enviroment variable called FONTS_DIR
, that contains the path that contains fonts.json
(and it's relative to the fonts path inside it)
Dependencies
~1–4MB
~77K SLoC