Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AlphaModel (0.33 sec)

  1. src/image/png/writer.go

    		} else {
    			e.cb = cbP8
    		}
    	} else {
    		switch m.ColorModel() {
    		case color.GrayModel:
    			e.cb = cbG8
    		case color.Gray16Model:
    			e.cb = cbG16
    		case color.RGBAModel, color.NRGBAModel, color.AlphaModel:
    			if opaque(m) {
    				e.cb = cbTC8
    			} else {
    				e.cb = cbTCA8
    			}
    		default:
    			if opaque(m) {
    				e.cb = cbTC16
    			} else {
    				e.cb = cbTCA16
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. src/image/image.go

    	Pix []uint8
    	// Stride is the Pix stride (in bytes) between vertically adjacent pixels.
    	Stride int
    	// Rect is the image's bounds.
    	Rect Rectangle
    }
    
    func (p *Alpha) ColorModel() color.Model { return color.AlphaModel }
    
    func (p *Alpha) Bounds() Rectangle { return p.Rect }
    
    func (p *Alpha) At(x, y int) color.Color {
    	return p.AlphaAt(x, y)
    }
    
    func (p *Alpha) RGBA64At(x, y int) color.RGBA64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 34.9K bytes
    - Viewed (0)
  3. src/image/png/reader_test.go

    func sng(w io.WriteCloser, filename string, png image.Image) {
    	defer w.Close()
    	bounds := png.Bounds()
    	cm := png.ColorModel()
    	var bitdepth int
    	switch cm {
    	case color.RGBAModel, color.NRGBAModel, color.AlphaModel, color.GrayModel:
    		bitdepth = 8
    	default:
    		bitdepth = 16
    	}
    	cpm, _ := cm.(color.Palette)
    	var paletted *image.Paletted
    	if cpm != nil {
    		switch {
    		case len(cpm) <= 2:
    			bitdepth = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
Back to top