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 - - - - - - - - - - -

ポイント G = g*0.59 + r*0.3 + b*0.11;
説  明 RGB(赤緑青)カラーからグレー値に変換するには次のようになります。「グレー値 = 緑*0.59 + 赤*0.3 + 青*0.11」
サンプル <html> <head> <title>RGB→グレー</title> <script Language="JavaScript"><!-- function RGBtoGRAY() { r = eval(document.myFORM.red.value); b = eval(document.myFORM.blue.value); g = eval(document.myFORM.green.value); G = g*0.59 + r*0.3 + b*0.11; document.myFORM.gray.value = G; } // --></script> </head> <body> <form name="myFORM">   赤:<input type="text" name="red"><br>   緑:<input type="text" name="green"><br>   青:<input type="text" name="blue"><br> グレー:<input type="text" name="gray"><br> <input type="button" onClick="RGBtoGRAY()" value="グレー値に変換"> </form> </body> </html>
補足説明 なし

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

写真素材 PIXTA