fontkit 0.3.0-beta.1

A simple library for font loading and indexing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
resource font-key {
    name: func() -> string
    italic: func() -> bool
    stretch: func() ->string
    weight: func() -> u32
}

resource font {}

resource font-kit {
    add-font-from-buffer: func(buffer: list<u8>) -> list<font-key>
    query: func(key: font-key) -> option<font>
}