我需要将(0,128,64)转换为这样的#008040。我不知道该怎么称呼后者,使搜索变得困难。
答案 0 :(得分:131)
使用格式运算符%
:
>>> '#%02x%02x%02x' % (0, 128, 64)
'#008040'
请注意,它不会检查边界...
>>> '#%02x%02x%02x' % (0, -1, 9999)
'#00-1270f'
答案 1 :(得分:41)
def clamp(x):
return max(0, min(x, 255))
"#{0:02x}{1:02x}{2:02x}".format(clamp(r), clamp(g), clamp(b))
这使用首选的字符串格式化方法,如described in PEP 3101。它还使用min()
和max
来确保0 <= {r,g,b} <= 255
。
更新添加了钳制功能,如下所示。
更新从问题的标题和给定的上下文中,很明显这需要[0,255]中的3个整数,并且在传递3个这样的整数时将始终返回颜色。但是,根据评论,这对每个人来说可能并不明显,所以请明确说明:
提供了三个
int
值,这将返回表示颜色的有效十六进制三元组。如果这些值介于[0,255]之间,那么它会将这些值视为RGB值并返回与这些值对应的颜色。
答案 2 :(得分:15)
这是一个老问题,但是为了获取信息,我开发了一个包含一些与颜色和颜色映射相关的实用程序的包,并包含你想要将三元组转换为hexa值的rgb2hex函数(可以在许多其他包中找到,例如matplotlib )。它在pypi上
pip install colormap
然后
>>> from colormap import rgb2hex
>>> rgb2hex(0, 128, 64)
'##008040'
检查输入的有效性(值必须介于0到255之间)。
答案 3 :(得分:7)
triplet = (0, 128, 64)
print '#'+''.join(map(chr, triplet)).encode('hex')
或
from struct import pack
print '#'+pack("BBB",*triplet).encode('hex')
python3略有不同
from base64 import b16encode
print(b'#'+b16encode(bytes(triplet)))
答案 4 :(得分:7)
我为它创建了一个完整的python程序,以下函数可以将rgb转换为十六进制,反之亦然。
def rgb2hex(r,g,b):
return "#{:02x}{:02x}{:02x}".format(r,g,b)
def hex2rgb(hexcode):
return tuple(map(ord,hexcode[1:].decode('hex')))
您可以通过以下链接查看完整的代码和教程:RGB to Hex and Hex to RGB conversion using Python
答案 5 :(得分:3)
您可以使用lambda和f字符串(在python 3.6及更高版本中可用)
rgb2hex = lambda r,g,b: f"#{r:02x}{g:02x}{b:02x}"
hex2rgb = lambda hx: (int(hx[0:2],16),int(hx[2:4],16),int(hx[4:6],16))
用法
rgb2hex(r,g,b) #output = #hexcolor
hex2rgb("#hex") #output = (r,g,b) hexcolor must be in #hex format
答案 6 :(得分:1)
def RGB(red,green,blue): return '#%02x%02x%02x' % (red,green,blue)
background = RGB(0, 128, 64)
我知道Python中的单行内容并不一定非常友善。但有些时候我无法拒绝利用Python解析器允许的内容。这与Dietrich Epp的解决方案(最好的)相同,但是它包含在单行功能中。所以,谢谢Dietrich!
我现在正在使用tkinter: - )
答案 7 :(得分:1)
我真的很惊讶没有人提出这种方法:
对于Python 2和3:
'#' + ''.join('{:02X}'.format(i) for i in colortuple)
Python 3.6 +:
'#' + ''.join(f'{i:02X}' for i in colortuple)
功能:
def hextriplet(colortuple):
return '#' + ''.join(f'{i:02X}' for i in colortuple)
color = (0, 128, 64)
print(hextriplet(color))
#008040
答案 8 :(得分:0)
在 Python 3.6 中,您可以使用 f-strings 来使其更清洁:
rgb = (0,128, 64)
f'#{rgb[0]:02x}{rgb[1]:02x}{rgb[2]:02x}'
当然你可以把它放到函数中,作为奖励,值会被舍入并转换为int :
def rgb2hex(r,g,b):
return f'#{int(round(r)):02x}{int(round(g)):02x}{int(round(b)):02x}'
rgb2hex(*rgb)
答案 9 :(得分:0)
这是一个更完整的函数,用于处理RGB值在 [0,1] 或范围 [0,255] 范围内的情况。
def RGBtoHex(vals, rgbtype=1):
"""Converts RGB values in a variety of formats to Hex values.
@param vals An RGB/RGBA tuple
@param rgbtype Valid valus are:
1 - Inputs are in the range 0 to 1
256 - Inputs are in the range 0 to 255
@return A hex string in the form '#RRGGBB' or '#RRGGBBAA'
"""
if len(vals)!=3 and len(vals)!=4:
raise Exception("RGB or RGBA inputs to RGBtoHex must have three or four elements!")
if rgbtype!=1 and rgbtype!=256:
raise Exception("rgbtype must be 1 or 256!")
#Convert from 0-1 RGB/RGBA to 0-255 RGB/RGBA
if rgbtype==1:
vals = [255*x for x in vals]
#Ensure values are rounded integers, convert to hex, and concatenate
return '#' + ''.join(['{:02X}'.format(int(round(x))) for x in vals])
print(RGBtoHex((0.1,0.3, 1)))
print(RGBtoHex((0.8,0.5, 0)))
print(RGBtoHex(( 3, 20,147), rgbtype=256))
print(RGBtoHex(( 3, 20,147,43), rgbtype=256))
答案 10 :(得分:0)
请注意,这仅适用于python3.6及更高版本。
def rgb2hex(color):
"""Converts a list or tuple of color to an RGB string
Args:
color (list|tuple): the list or tuple of integers (e.g. (127, 127, 127))
Returns:
str: the rgb string
"""
return f"#{''.join(f'{hex(c)[2:].upper():0>2}' for c in color)}"
以上相当于:
def rgb2hex(color):
string = '#'
for value in color:
hex_string = hex(value) # e.g. 0x7f
reduced_hex_string = hex_string[2:] # e.g. 7f
capitalized_hex_string = reduced_hex_string.upper() # e.g. 7F
string += capitalized_hex_string # e.g. #7F7F7F
return string
答案 11 :(得分:0)
您也可以使用效率很高的按位运算符,即使我怀疑您担心这样的效率也是如此。也比较干净。请注意,它不会限制或检查边界。至少从Python 2.7.17开始,此功能已得到支持。
hex(r << 16 | g << 8 | b)
并对其进行更改,使其以#开头,您可以执行以下操作:
"#" + hex(243 << 16 | 103 << 8 | 67)[2:]
答案 12 :(得分:0)
有一个名为webcolors的软件包。 https://github.com/ubernostrum/webcolors
它具有方法webcolors.rgb_to_hex
>>> import webcolors
>>> webcolors.rgb_to_hex((12,232,23))
'#0ce817'
答案 13 :(得分:0)
''.join('%02x'%i for i in input)
可用于从 int 数进行十六进制转换