type image.Gray
16 uses
image (current package)
image.go#L829: type Gray struct {
image.go#L839: func (p *Gray) ColorModel() color.Model { return color.GrayModel }
image.go#L841: func (p *Gray) Bounds() Rectangle { return p.Rect }
image.go#L843: func (p *Gray) At(x, y int) color.Color {
image.go#L847: func (p *Gray) RGBA64At(x, y int) color.RGBA64 {
image.go#L853: func (p *Gray) GrayAt(x, y int) color.Gray {
image.go#L863: func (p *Gray) PixOffset(x, y int) int {
image.go#L867: func (p *Gray) Set(x, y int, c color.Color) {
image.go#L875: func (p *Gray) SetRGBA64(x, y int, c color.RGBA64) {
image.go#L885: func (p *Gray) SetGray(x, y int, c color.Gray) {
image.go#L895: func (p *Gray) SubImage(r Rectangle) Image {
image.go#L901: return &Gray{}
image.go#L904: return &Gray{
image.go#L912: func (p *Gray) Opaque() bool {
image.go#L917: func NewGray(r Rectangle) *Gray {
image.go#L918: return &Gray{
|
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. |