2021-01-24から1日間の記事一覧

TrueTypeフォントをPNG画像に出力するGo言語コード

絵文字が豆腐になる。どうすればいいのかは要調査 package main import ( "bytes" "fmt" "image" "image/png" "io/ioutil" "os" "github.com/golang/freetype/truetype" "golang.org/x/image/font" "golang.org/x/image/math/fixed" ) func main() { f, err …