|
| quote: | | isn't white =red+green+blue? therefore it should very possible to print white ink |
That would be true, IF printers printed in RGB. The problem here is that RGB is a televisions/monitors represention of color, where black is the absense of all color:
RGB Black
RED = 0
GREEN = 0
BLUE = 0
And white is the colors at maximum intensity.
RGB White
Red = 255
Green = 255
Blue = 255
However, printers use CMYK color to print, not RGB. In CMYK, the color white is represeneted as the absence of all colors:
CMYK white
Cyan = 0
Magenta = 0
Yellow = 0
Black = 0
With that being said, you can see why you can't print white with standard offset (CMYK) printing. The only way to print white is with a screen printer which = expensive.
|