Can you add an example of how to create a simple letter and save as a font?
alexhallam opened this issue · 1 comments
alexhallam commented
Say I want to make a "pixel" style font from scratch. For example the letter "p" would be represented as
[
[0, 1, 1, 0, 0],
[1, 0, 0, 1, 0],
[1, 0, 0, 1, 0],
[1, 0, 0, 1, 0],
[1, 1, 1, 0, 0],
[1, 0, 0, 0, 0],
[1, 0, 0, 0, 0],
]
How can I create this letter and save as a ttf
or otf
using Rust and this library?
mooman219 commented
You cannot use Fontdue to modify or create a new font, sorry! There's no intention of doing so either.