WritePNG -> SavePNG
This commit is contained in:
parent
920f472de0
commit
6a8c25552f
@ -83,7 +83,7 @@ func (dc *Context) Height() int {
|
|||||||
return dc.height
|
return dc.height
|
||||||
}
|
}
|
||||||
|
|
||||||
func (dc *Context) WritePNG(path string) error {
|
func (dc *Context) SavePNG(path string) error {
|
||||||
return SavePNG(path, dc.im)
|
return SavePNG(path, dc.im)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,5 +8,5 @@ func main() {
|
|||||||
dc.SetRGB(0, 0, 0)
|
dc.SetRGB(0, 0, 0)
|
||||||
dc.SetLineWidth(10)
|
dc.SetLineWidth(10)
|
||||||
dc.Stroke()
|
dc.Stroke()
|
||||||
dc.WritePNG("out.png")
|
dc.SavePNG("out.png")
|
||||||
}
|
}
|
||||||
|
@ -13,5 +13,5 @@ func main() {
|
|||||||
dc.Fill()
|
dc.Fill()
|
||||||
dc.Pop()
|
dc.Pop()
|
||||||
}
|
}
|
||||||
dc.WritePNG("out.png")
|
dc.SavePNG("out.png")
|
||||||
}
|
}
|
||||||
|
@ -27,5 +27,5 @@ func main() {
|
|||||||
dc.DrawLine(x1, y1, x2, y2)
|
dc.DrawLine(x1, y1, x2, y2)
|
||||||
dc.Stroke()
|
dc.Stroke()
|
||||||
}
|
}
|
||||||
dc.WritePNG("out.png")
|
dc.SavePNG("out.png")
|
||||||
}
|
}
|
||||||
|
@ -36,5 +36,5 @@ func main() {
|
|||||||
dc.SetRGBA(0, 1, 0, 0.5)
|
dc.SetRGBA(0, 1, 0, 0.5)
|
||||||
dc.SetLineWidth(16)
|
dc.SetLineWidth(16)
|
||||||
dc.Stroke()
|
dc.Stroke()
|
||||||
dc.WritePNG("out.png")
|
dc.SavePNG("out.png")
|
||||||
}
|
}
|
||||||
|
@ -11,5 +11,5 @@ func main() {
|
|||||||
s := "Hello, world!"
|
s := "Hello, world!"
|
||||||
w := dc.MeasureString(s)
|
w := dc.MeasureString(s)
|
||||||
dc.DrawString(500-w/2, 500, s)
|
dc.DrawString(500-w/2, 500, s)
|
||||||
dc.WritePNG("out.png")
|
dc.SavePNG("out.png")
|
||||||
}
|
}
|
||||||
|
@ -17,5 +17,5 @@ func main() {
|
|||||||
dc.DrawImage(im, x*w, y*h)
|
dc.DrawImage(im, x*w, y*h)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dc.WritePNG("out.png")
|
dc.SavePNG("out.png")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user