Introduïu els nivells de color vermell, verd i blau (0..255) i premeu el botó Converteix :
Els valors R, G, B es divideixen per 255 per canviar l'interval de 0..255 a 0..1:
R '= R / 255
G '= G / 255
B '= B / 255
El color de la tecla negre (K) es calcula a partir dels colors vermell (R '), verd (G') i blau (B '):
K = 1-màxim ( R ', G ', B ')
El color cian (C) es calcula a partir dels colors vermell (R ') i negre (K):
C = (1- R '- K ) / (1- K )
El color magenta (M) es calcula a partir dels colors verd (G ') i negre (K):
M = (1- G '- K ) / (1- K )
El color groc (Y) es calcula a partir dels colors blau (B ') i negre (K):
Y = (1- B '- K ) / (1- K )
Color | Color nom |
(R, G, B) | Hex | (C, M, Y, K) |
---|---|---|---|---|
Negre | (0,0,0) | # 000000 | (0,0,0,1) | |
Blanc | (255.255.255) | #FFFFFF | (0,0,0,0) | |
Vermell | (255,0,0) | # FF0000 | (0,1,1,0) | |
Verd | (0,255,0) | # 00FF00 | (1,0,1,0) | |
Blau | (0,0,255) | # 0000FF | (1,1,0,0) | |
Groc | (255.255,0) | # FFFF00 | (0,0,1,0) | |
Cian | (0,255,255) | # 00FFFF | (1,0,0,0) | |
Magenta | (255,0.255) | # FF00FF | (0,1,0,0) |
Advertising