RGB→CMY


動作ブラウザ 【 IE:3.0  NN:2.0
Internet Explorer Netscape Navigator DreamPassport iCab
3.0x 4.0x 4.5 5.0x 5.5 2.0x 3.0x 4.0x 4.x 6.0 2 3 2.x
Windows - - -
Macintosh - - -
UNIX - - - - - - - -
Dreamcast - - - - - - - - - - -

ポイント max = 1; c = max - r; m = max - g; y = max - b;
説  明 RGB(赤緑青)カラーとCMY(シアン、マゼンタ、イエロー)カラーは補色の関係にあります。変換するには輝度の最大値からRGB各色の輝度を減算します。輝度の最大値が1であれば次のようになります。「C=1-R、M=1-G、Y=1-B」
サンプル <html> <head> <title>RGB→CMY</title> <script Language="JavaScript"><!-- function RGBtoCMY() { max = 1; // 最大輝度 r = eval(document.myFORM.red.value); b = eval(document.myFORM.blue.value); g = eval(document.myFORM.green.value); c = max - r; m = max - g; y = max - b; document.myFORM.cyan.value = c; document.myFORM.magenta.value = m; document.myFORM.yellow.value = y; } // --></script> </head> <body> RGBの範囲は0〜1<br> <form name="myFORM"> 赤:<input type="text" name="red"><br> 緑:<input type="text" name="green"><br> 青:<input type="text" name="blue"><br> <input type="button" onClick="RGBtoCMY()" value="CMYに変換"><br>  シアン(C):<input type="text" name="cyan"><br> マゼンタ(M):<input type="text" name="magenta"><br> イエロー(Y):<input type="text" name="yellow"><br> </form> </body> </html>
補足説明 なし

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!

写真素材 PIXTA