Hex顏色到RGB顏色在線轉換工具
RGB顏色
關於Hex顏色到RGB顏色在線轉換工具:
這個在線Hex顏色到RGB顏色轉換工具可幫助您將一個Hex顏色轉換為RGB顏色, 並實時測試您選擇的顏色.
Hex顏色系統:
HTML的顏色系統可以用16進制的數字表示,從#000000
(純黑色) to #FFFFFF
(純白色).例如, #123456
代表紅色通道是"12" (在"00"到"FF"之間).綠色通道是"34",藍色通道是"56". Hex顏色系統也支持簡化顯示,例如#e1a
和#ee11aa
是等價的.
RGB顏色系統:
RGB顏色系統中"R" 代表紅色通道("Red"), "G" 代表綠色通道("Green"), "B" 代表藍色通道("Blue").例如rgb(16,110,190).
如何進行Hex顏色到RGB顏色轉換?
步驟1: 分別獲得Hex顏色的紅色通道值,綠色通道值,藍色通道值.
步驟2: 把顏色通道值從16進制轉換為10進制.
步驟3: 按RGB顏色系統語法把3種顏色通道值組合起來.
例1:把Hex顏色"#106ebe"轉換為RGB顏色(結果是"rgb(16,110,190)"):
Step 1: | Hex Color "#106ebe": Red(0x10), Green(0x6e), Blue(0xbe) |
Step 2: | Red: (0x10)->(16), Green: (0x6e)->(110), Blue: (0xbe)->(190) |
Step 3: | Hex Color "#106ebe" -> rgb(16,110,190) |
例2:把Hex顏色"#ea3"轉換為RGB顏色(結果是"rgb(238,170,51)"):
Step 1: | Hex Color "#ea3" -> "#eeaa33" |
Step 2: | Hex Color "#eeaa33": Red(0xee), Green(0xaa), Blue(0x33) |
Step 3: | Red: (0xee)->(238), Green: (0xaa)->(170), Blue: (0x33)->(51) |
Step 4: | Hex Color "#ea3" -> rgb(238,170,51) |
鏈接:
維基百科(Web顏色系統): https://en.wikipedia.org/wiki/Web_colors
維基百科(RGB顏色系統): https://en.wikipedia.org/wiki/RGB_color_model
用Python進行Hex顏色到RGB顏色轉換:
def hex_to_rgb(hex_color): hex_color = hex_color.replace(" ", "").replace("#", "") # 3-digits hex color if len(hex_color) == 3: r = hex_color[0] * 2 g = hex_color[1] * 2 b = hex_color[2] * 2 # 6-digits hex color elif len(hex_color) == 6: r = hex_color[0:2] g = hex_color[2:4] b = hex_color[4:6] else: return "length error" # convert hex to decimal r = int(r, 16) g = int(g, 16) b = int(b, 16) # check if in range 0~255 assert 0 <= r <= 255 assert 0 <= g <= 255 assert 0 <= b <= 255 # write rgb in correct syntax rgb_color = "rgb({0},{1},{2})".format(r, g, b) return rgb_color hex_input = '#106ebe' RGB_output = hex_to_rgb(hex_input) print('RGB result is:{0}'.format(RGB_output)) ------------------- RGB result is:rgb(16,110,190)
相關工具
16進製到10進制轉換
10進製到16進制轉換
8進製到10進制轉換
10進製到8進制轉換
2進製到10進制轉換
10進製到2進制轉換
2進製到16進制轉換
16進製到2進制轉換
ASCII查詢表
16進製到ASCII字符串轉換
ASCII字符串到16進制轉換
2進製到ASCII字符串轉換
ASCII字符串到2進制轉具
分數到小數轉換
小數到分數轉換
百分比到小數轉換
小數到百分比轉換
百分比到分數轉換
分數到百分比轉換
Hex顏色到RGB顏色轉換
RGB顏色到Hex顏色轉換
Hex顏色到RGBA顏色轉換
RGBA顏色轉Hex顏色轉換
羅馬數字對照表1-1000
羅馬數字到阿拉伯數字轉換
阿拉伯數字到羅馬數字轉換