type image/color.CMYK

9 uses

	image/color (current package)
		ycbcr.go#L348: type CMYK struct {
		ycbcr.go#L352: func (c CMYK) RGBA() (uint32, uint32, uint32, uint32) {
		ycbcr.go#L367: 	if _, ok := c.(CMYK); ok {
		ycbcr.go#L372: 	return CMYK{cc, mm, yy, kk}

	image
		image.go#L1049: func (p *CMYK) CMYKAt(x, y int) color.CMYK {
		image.go#L1051: 		return color.CMYK{}
		image.go#L1055: 	return color.CMYK{s[0], s[1], s[2], s[3]}
		image.go#L1069: 	c1 := color.CMYKModel.Convert(c).(color.CMYK)
		image.go#L1090: func (p *CMYK) SetCMYK(x, y int, c color.CMYK) {