Skip to content

lengzhao/font

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

font

autoload font file for fyne app

zh: 自动加载系统中的字体文件

package main

import (
    "fyne.io/fyne/v2/app"
    "fyne.io/fyne/v2/container"
    "fyne.io/fyne/v2/widget"
    _ "github.com/lengzhao/font/autoload"
)

func main() {
    a := app.New()
    w := a.NewWindow("Hello")

    hello := widget.NewLabel("Hello Fyne!你好")
    w.SetContent(container.NewVBox(
        hello,
        widget.NewButton("Hi!", func() {
            hello.SetText("Welcome :)")
        }),
    ))

    w.ShowAndRun()
}

description

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

package main

import (
    "fyne.io/fyne/v2/app"
    "fyne.io/fyne/v2/container"
    "fyne.io/fyne/v2/widget"
    "github.com/lengzhao/font"
)

func main() {
    files := font.FindFontFile("ZHS")
    if len(files) > 0 {
        os.Setenv("FYNE_FONT", files[0])
    }

    a := app.New()
    w := a.NewWindow("Hello")

    hello := widget.NewLabel("Hello Fyne!你好")
    w.SetContent(container.NewVBox(
        hello,
        widget.NewButton("Hi!", func() {
            hello.SetText("Welcome :)")
        }),
    ))

    w.ShowAndRun()
}

About

fyne, autoload font

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages