KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
dejavu
★ 12
Open GitHub ↗
DejaVu fonts for Go
Download README (.md)
Explore Similar Repositories
private_out_send
:
Script to collect ETH or ERC20 from a list of private key to 1 address
MultiColorText
:
Allows to draw text with multiple colors with just one function in Garry's Mod
observability
:
Project to apply concepts of the observability
slash
:
PHP library for functional programming
dataProcessor
:
中英文语料数据清洗及分布式分句分词预处理工作
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
dejavu
?
Download (.md)
# dejavu [](https://github.com/go-fonts/dejavu/releases) [](https://godoc.org/github.com/go-fonts/dejavu) [](https://github.com/go-fonts/dejavu/raw/main/LICENSE) `dejavu` provides the [DejaVu](https://dejavu-fonts.github.io/) fonts as importable Go packages. The fonts are released under the [DejaVu font](https://github.com/go-fonts/dejavu/raw/main/LICENSE-DejaVu) license. The Go packages under the [BSD-3](https://github.com/go-fonts/dejavu/raw/main/LICENSE) license. ## Example ```go import ( "fmt" "log" "github.com/go-fonts/dejavu/dejavumathtexgyre" "golang.org/x/image/font/sfnt" ) func Example() { ttf, err := sfnt.Parse(dejavumathtexgyre.TTF) if err != nil { log.Fatalf("could not parse DejaVu Math font: %+v", err) } fmt.Printf("num glyphs: %d\n", ttf.NumGlyphs()) // Output: // num glyphs: 4282 } ```