#module
#defcfunc to_htm int r, int g, int b
return strf("%02x%02x%02x", r, g, b)
#defcfunc from_htm var s, int no
return int("$" + strmid(s, no * 2, 2))
#global
dialog "", 33
code = to_htm(ginfo_r, ginfo_g, ginfo_b) // RGB -> Html
mes "Htmlカラーコード:#" + code
mes "R:" + from_htm(code, 0) // 赤輝度取り出し
mes "G:" + from_htm(code, 1) // 緑輝度取り出し
mes "B:" + from_htm(code, 2) // 青輝度取り出し
|