gg/examples/text.go
Michael Fogleman 805bc68eed refactoring
2016-02-19 11:07:25 -05:00

16 lines
304 B
Go

package main
import "github.com/fogleman/gg"
func main() {
dc := gg.NewContext(1000, 1000)
dc.SetRGB(1, 1, 1)
dc.Clear()
dc.SetRGB(0, 0, 0)
dc.LoadFontFace("/Library/Fonts/Impact.ttf", 96)
s := "Hello, world!"
w := dc.MeasureString(s)
dc.DrawString(500-w/2, 500, s)
dc.WriteToPNG("out.png")
}