1
0
mirror of https://github.com/golang/go synced 2024-09-24 11:20:20 -06: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:
Nigel Tao 2012-04-26 17:39:04 +10:00
parent e412761488
commit b28431ec8e

View File

@ -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}