blob: 4bd6f8f197138f9d233384a82b018ec15354f511 [file] [log] [blame]
//go:build OMIT
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())
}