Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rgbaModel (0.14 sec)

  1. src/image/color/color.go

    	NRGBAModel   Model = ModelFunc(nrgbaModel)
    	NRGBA64Model Model = ModelFunc(nrgba64Model)
    	AlphaModel   Model = ModelFunc(alphaModel)
    	Alpha16Model Model = ModelFunc(alpha16Model)
    	GrayModel    Model = ModelFunc(grayModel)
    	Gray16Model  Model = ModelFunc(gray16Model)
    )
    
    func rgbaModel(c Color) Color {
    	if _, ok := c.(RGBA); ok {
    		return c
    	}
    	r, g, b, a := c.RGBA()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top