type image.Gray
16 uses
image (current package)
image.go#L845: type Gray struct {
image.go#L855: func (p *Gray) ColorModel() color.Model { return color.GrayModel }
image.go#L857: func (p *Gray) Bounds() Rectangle { return p.Rect }
image.go#L859: func (p *Gray) At(x, y int) color.Color {
image.go#L863: func (p *Gray) RGBA64At(x, y int) color.RGBA64 {
image.go#L869: func (p *Gray) GrayAt(x, y int) color.Gray {
image.go#L879: func (p *Gray) PixOffset(x, y int) int {
image.go#L883: func (p *Gray) Set(x, y int, c color.Color) {
image.go#L891: func (p *Gray) SetRGBA64(x, y int, c color.RGBA64) {
image.go#L901: func (p *Gray) SetGray(x, y int, c color.Gray) {
image.go#L911: func (p *Gray) SubImage(r Rectangle) Image {
image.go#L917: return &Gray{}
image.go#L920: return &Gray{
image.go#L928: func (p *Gray) Opaque() bool {
image.go#L933: func NewGray(r Rectangle) *Gray {
image.go#L934: return &Gray{
 |
The pages are generated with Golds v0.8.4. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |