整数の色コードを十六進数に変換するスクリプト
ほんとRubyって手軽ですね。 #!/usr/bin/env ruby # rgb.rb def to_hex(n) n.to_s 16 end def rgb_to_hex(r, g, b) r_hex = to_he…
More..ほんとRubyって手軽ですね。 #!/usr/bin/env ruby # rgb.rb def to_hex(n) n.to_s 16 end def rgb_to_hex(r, g, b) r_hex = to_he…
More..