blob: 5debf660ca194c28f72cfd8442f07f9136f799c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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")
}
|