mirror of
https://github.com/golang/go
synced 2024-11-21 17:04:42 -07:00
doc: simplify the image_draw article example for converting an image to
RGBA. R=adg, r, bsiegert CC=golang-dev https://golang.org/cl/6119054
This commit is contained in:
parent
e412761488
commit
b28431ec8e
@ -84,8 +84,8 @@ func ConvAndCircle() {
|
||||
|
||||
// CONV OMIT
|
||||
b := src.Bounds()
|
||||
m := image.NewRGBA(image.Rect(0, 0, b.Dx(), b.Dy()))
|
||||
draw.Draw(m, m.Bounds(), src, b.Min, draw.Src)
|
||||
m := image.NewRGBA(b)
|
||||
draw.Draw(m, b, src, b.Min, draw.Src)
|
||||
// STOP OMIT
|
||||
|
||||
p := image.Point{100, 100}
|
||||
|
Loading…
Reference in New Issue
Block a user