package stdlib
import (
"image/color"
"reflect"
)
func init() {
Symbols ["image/color/color" ] = map [string ]reflect .Value {
"Alpha16Model" : reflect .ValueOf (&color .Alpha16Model ).Elem (),
"AlphaModel" : reflect .ValueOf (&color .AlphaModel ).Elem (),
"Black" : reflect .ValueOf (&color .Black ).Elem (),
"CMYKModel" : reflect .ValueOf (&color .CMYKModel ).Elem (),
"CMYKToRGB" : reflect .ValueOf (color .CMYKToRGB ),
"Gray16Model" : reflect .ValueOf (&color .Gray16Model ).Elem (),
"GrayModel" : reflect .ValueOf (&color .GrayModel ).Elem (),
"ModelFunc" : reflect .ValueOf (color .ModelFunc ),
"NRGBA64Model" : reflect .ValueOf (&color .NRGBA64Model ).Elem (),
"NRGBAModel" : reflect .ValueOf (&color .NRGBAModel ).Elem (),
"NYCbCrAModel" : reflect .ValueOf (&color .NYCbCrAModel ).Elem (),
"Opaque" : reflect .ValueOf (&color .Opaque ).Elem (),
"RGBA64Model" : reflect .ValueOf (&color .RGBA64Model ).Elem (),
"RGBAModel" : reflect .ValueOf (&color .RGBAModel ).Elem (),
"RGBToCMYK" : reflect .ValueOf (color .RGBToCMYK ),
"RGBToYCbCr" : reflect .ValueOf (color .RGBToYCbCr ),
"Transparent" : reflect .ValueOf (&color .Transparent ).Elem (),
"White" : reflect .ValueOf (&color .White ).Elem (),
"YCbCrModel" : reflect .ValueOf (&color .YCbCrModel ).Elem (),
"YCbCrToRGB" : reflect .ValueOf (color .YCbCrToRGB ),
"Alpha" : reflect .ValueOf ((*color .Alpha )(nil )),
"Alpha16" : reflect .ValueOf ((*color .Alpha16 )(nil )),
"CMYK" : reflect .ValueOf ((*color .CMYK )(nil )),
"Color" : reflect .ValueOf ((*color .Color )(nil )),
"Gray" : reflect .ValueOf ((*color .Gray )(nil )),
"Gray16" : reflect .ValueOf ((*color .Gray16 )(nil )),
"Model" : reflect .ValueOf ((*color .Model )(nil )),
"NRGBA" : reflect .ValueOf ((*color .NRGBA )(nil )),
"NRGBA64" : reflect .ValueOf ((*color .NRGBA64 )(nil )),
"NYCbCrA" : reflect .ValueOf ((*color .NYCbCrA )(nil )),
"Palette" : reflect .ValueOf ((*color .Palette )(nil )),
"RGBA" : reflect .ValueOf ((*color .RGBA )(nil )),
"RGBA64" : reflect .ValueOf ((*color .RGBA64 )(nil )),
"YCbCr" : reflect .ValueOf ((*color .YCbCr )(nil )),
"_Color" : reflect .ValueOf ((*_image_color_Color )(nil )),
"_Model" : reflect .ValueOf ((*_image_color_Model )(nil )),
}
}
type _image_color_Color struct {
IValue interface {}
WRGBA func () (r uint32 , g uint32 , b uint32 , a uint32 )
}
func (W _image_color_Color ) RGBA () (r uint32 , g uint32 , b uint32 , a uint32 ) {
return W .WRGBA ()
}
type _image_color_Model struct {
IValue interface {}
WConvert func (c color .Color ) color .Color
}
func (W _image_color_Model ) Convert (c color .Color ) color .Color {
return W .WConvert (c )
}
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 .