type image.Gray
20 uses
image (current package)
image.go#L708: type Gray struct {
image.go#L718: func (p *Gray) ColorModel() color.Model { return color.GrayModel }
image.go#L720: func (p *Gray) Bounds() Rectangle { return p.Rect }
image.go#L722: func (p *Gray) At(x, y int) color.Color {
image.go#L726: func (p *Gray) GrayAt(x, y int) color.Gray {
image.go#L736: func (p *Gray) PixOffset(x, y int) int {
image.go#L740: func (p *Gray) Set(x, y int, c color.Color) {
image.go#L748: func (p *Gray) SetGray(x, y int, c color.Gray) {
image.go#L758: func (p *Gray) SubImage(r Rectangle) Image {
image.go#L764: return &Gray{}
image.go#L767: return &Gray{
image.go#L775: func (p *Gray) Opaque() bool {
image.go#L780: func NewGray(r Rectangle) *Gray {
image.go#L781: return &Gray{
image/jpeg
reader.go#L125: img1 *image.Gray
scan.go#L15: d.img1 = m.SubImage(image.Rect(0, 0, d.width, d.height)).(*image.Gray)
writer.go#L406: func grayToY(m *image.Gray, p image.Point, yBlock *block) {
writer.go#L511: case *image.Gray:
writer.go#L527: case *image.Gray:
writer.go#L620: case *image.Gray:
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |