liamg / fontinfo

Go package to list/match available fonts on a Linux system

Home Page:https://pkg.go.dev/github.com/liamg/fontinfo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FontInfo

Go Reference GoReportCard

FontInfo is a Go package to list available fonts on a Linux system.

  • No CGO required
  • Doesn't wrap fontconfig or other utilities
  • Pure Go
  • No external dependencies
  • Provides family and style for each font
  • Supports TTF and OTF
  • Fast (typically parses 1k fonts in ~100ms)

Example

package main

import (
	"fmt"

	"github.com/liamg/fontinfo"
)

func main() {

	fonts, err := fontinfo.List()
	if err != nil {
		panic(err)
	}

	for _, font := range fonts {
		fmt.Printf("Family=%s Style=%s Path=%s\n", font.Family, font.Style, font.Path)
	}
}

About

Go package to list/match available fonts on a Linux system

https://pkg.go.dev/github.com/liamg/fontinfo

License:Apache License 2.0


Languages

Language:Go 100.0%