gg/examples/circle.go

17 lines
285 B
Go
Raw Normal View History

2016-02-19 04:11:53 +01:00
package main
2016-02-19 15:43:37 +01:00
import "github.com/fogleman/gg"
2016-02-19 04:11:53 +01:00
func main() {
2016-02-19 15:43:37 +01:00
dc := gg.NewContext(1000, 1000)
2016-02-19 17:07:25 +01:00
dc.SetRGB(1, 1, 1)
dc.Clear()
2016-02-19 04:11:53 +01:00
dc.DrawCircle(500, 500, 400)
2016-02-19 17:07:25 +01:00
dc.SetRGBA(0, 0, 0, 0.25)
2016-02-19 04:11:53 +01:00
dc.FillPreserve()
2016-02-19 17:07:25 +01:00
dc.SetRGB(0, 0, 0.5)
2016-02-19 04:11:53 +01:00
dc.SetLineWidth(8)
dc.Stroke()
dc.WriteToPNG("out.png")
}