identicond/vendor/github.com/fogleman/gg/examples/circle.go

12 lines
180 B
Go
Raw Normal View History

2017-12-29 22:10:53 +00:00
package main
import "github.com/fogleman/gg"
func main() {
dc := gg.NewContext(1000, 1000)
dc.DrawCircle(500, 500, 400)
dc.SetRGB(0, 0, 0)
dc.Fill()
dc.SavePNG("out.png")
}