I want to calculate the coverage of cmyk color + the coverage of white. I only have no clue of how to calculate the white.
if c, m, y, and k go from 0 to 1 is then white:
w = 1 - (c+m+y+k/4)
or is it:
w = 1- c-m-y-k
(and the clamped to be 0 or above so it's not minus something)
Or is it more complex then that?