Skip to content

Instantly share code, notes, and snippets.

@hakobe
Created January 9, 2014 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hakobe/8332630 to your computer and use it in GitHub Desktop.
Save hakobe/8332630 to your computer and use it in GitHub Desktop.
package main
import (
"code.google.com/p/go-tour/pic"
"image"
"image/color"
)
type Image struct{}
func (i Image) ColorModel() color.Model {
return color.RGBAModel
}
func (i Image) Bounds() image.Rectangle {
return image.Rect(0, 0, 255, 255)
}
func (i Image) At(x, y int) color.Color {
return color.RGBA{uint8(x), uint8(y), uint8(x), 0xff}
}
func main() {
m := Image{}
pic.ShowImage(m)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment