blob: 42de838dc8ed7675027c213408d08d4e3be97f9b [file] [log] [blame]
package main
import (
"fmt"
"image"
)
func main() {
m := image.NewRGBA(image.Rect(0, 0, 100, 100))
fmt.Println(m.Bounds())
fmt.Println(m.At(0, 0).RGBA())
}