««« CL
6119054 /
a7183646b353
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
»»»
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
6119056
// 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}