Closed alexhallam closed 1 year ago
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?
ttf
otf
You cannot use Fontdue to modify or create a new font, sorry! There's no intention of doing so either.
Say I want to make a "pixel" style font from scratch. For example the letter "p" would be represented as
How can I create this letter and save as a
ttf
orotf
using Rust and this library?