go-fonts/liberation
GitHub: go-fonts/liberation
Stars: 6 | Forks: 0
# liberation
[](https://github.com/go-fonts/liberation/releases)
[](https://godoc.org/github.com/go-fonts/liberation)
[](https://github.com/go-fonts/liberation/raw/master/LICENSE)
`liberation` provides the [liberation](https://github.com/liberationfonts/liberation-fonts/) fonts as importable Go packages.
The fonts are released under the [SIL Open Font](https://github.com/go-fonts/liberation/raw/master/LICENSE-SIL) license.
The Go packages under the [BSD-3](https://github.com/go-fonts/liberation/raw/master/LICENSE) license.
## Example
import (
"fmt"
"log"
"github.com/go-fonts/liberation/liberationserifregular"
"golang.org/x/image/font/sfnt"
)
func Example() {
ttf, err := sfnt.Parse(liberationserifregular.TTF)
if err != nil {
log.Fatalf("could not parse Liberation Serif font: %+v", err)
}
var buf sfnt.Buffer
v, err := ttf.Name(&buf, sfnt.NameIDVersion)
if err != nil {
log.Fatalf("could not retrieve font version: %+v", err)
}
fmt.Printf("version: %s\n", v)
fmt.Printf("num glyphs: %d\n", ttf.NumGlyphs())
// Output:
// version: Version 2.1.4
// num glyphs: 2601
}
标签:EVTX分析