type image/color.NRGBA
11 uses
image/color (current package)
color.go#L56: type NRGBA struct {
color.go#L60: func (c NRGBA) RGBA() (r, g, b, a uint32) {
color.go#L193: if _, ok := c.(NRGBA); ok {
color.go#L198: return NRGBA{uint8(r >> 8), uint8(g >> 8), uint8(b >> 8), 0xff}
color.go#L201: return NRGBA{0, 0, 0, 0}
color.go#L207: return NRGBA{uint8(r >> 8), uint8(g >> 8), uint8(b >> 8), uint8(a >> 8)}
image
image.go#L362: func (p *NRGBA) NRGBAAt(x, y int) color.NRGBA {
image.go#L364: return color.NRGBA{}
image.go#L368: return color.NRGBA{s[0], s[1], s[2], s[3]}
image.go#L382: c1 := color.NRGBAModel.Convert(c).(color.NRGBA)
image.go#L408: func (p *NRGBA) SetNRGBA(x, y int, c color.NRGBA) {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |