-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
dirs, _ := fontconfig.DefaultFontDirs()
for _, dir := range dirs {
config := fontconfig.NewConfig()
ff, err := config.ScanFontDirectories(dir)
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
for _, pattern := range ff {
fmt.Println(pattern.GetAt(fontconfig.FULLNAME, 1))
}
}
Hello, I failed to get the second full name with the above code.
My local computer contains a second full name font. Is there any problem with my use?
Metadata
Metadata
Assignees
Labels
No labels
