-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfont.go
76 lines (71 loc) · 1.57 KB
/
font.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package font
import (
"fmt"
"os"
"strings"
"github.com/ConradIrwin/font/sfnt"
"github.com/flopp/go-findfont"
"github.com/jeandeaual/go-locale"
)
// FindFontFile finds font files based on the specified language.
//
// It takes a language code as a parameter and returns a slice of strings representing the file paths of the font files.
// If no font files are found, an error is returned.
//
// params: language string, e.g. "en", "fr", "de", etc.
//
// if language is "", the system language is used.
//
// See https://www.microsoft.com/typography/otspec/languagetags.htm
func FindFontFile(lg string) []string {
var out []string
language := lg
if len(language) == 0 {
var err error
language, err = locale.GetLanguage()
if err != nil {
return nil
}
}
language = strings.ToUpper(language)
fontPaths := findfont.List()
for _, path := range fontPaths {
if check(language, path) == nil {
out = append(out, path)
}
}
return out
}
func check(language, fn string) error {
f, err := os.Open(fn)
if err != nil {
return err
}
defer f.Close()
ft, err := sfnt.Parse(f)
if err != nil {
return err
}
// fmt.Println(path, ft.String())
tl, err := ft.GposTable()
if err == nil {
for _, it := range tl.Scripts {
for _, sit := range it.Languages {
if strings.HasPrefix(sit.Tag.String(), language) {
return nil
}
}
}
}
tl, err = ft.GsubTable()
if err == nil {
for _, it := range tl.Scripts {
for _, sit := range it.Languages {
if strings.HasPrefix(sit.Tag.String(), language) {
return nil
}
}
}
}
return fmt.Errorf("not founc")
}