1
0
Fork 0

added Images exercise

This commit is contained in:
Stephen M. McQuay 2012-08-28 22:18:10 -06:00
parent 8c02a18ea6
commit 5e38e7bee0
1 changed files with 29 additions and 0 deletions

29
exercises/06-images/go.go Normal file
View File

@ -0,0 +1,29 @@
package main
import (
"code.google.com/p/go-tour/pic"
"image"
"image/color"
)
type Image struct {
w, h int
}
func (i *Image) ColorModel() color.Model {
return color.RGBAModel
}
func (i *Image) Bounds() image.Rectangle {
return image.Rect(0, 0, i.w, i.h)
}
func (i *Image) At(x, y int) color.Color {
v := uint8(x & y)
return color.RGBA{v, v, 255, 255}
}
func main() {
m := &Image{256, 512}
pic.ShowImage(m)
}