CMY→RGB


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

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

写真素材 PIXTA