gpt4 book ai didi

python - 将 RGB 颜色转换为 RGBA 的 Plotly 函数? (Python)

转载 作者:行者123 更新时间:2023-12-05 03:59:38 29 4
gpt4 key购买 nike

就我对 Plotly 的有限了解而言,它将颜色表示为像 "rgb(23, 57, 211)""rgba(23, 57, 211, 0.5)",但我找不到从 RGB 转换为 RGBA 的函数。我想要这个函数,因为我想在 colors.py 中定义的 DEFAULT_PLOTLY_COLORS" 中为 RGB 颜色添加一个 alpha channel 。我知道这是非常简单的字符串操作,我可以编写我自己的函数,但是是否有官方的 Plotly 函数来执行此操作?

最佳答案

截至今天,据我所知不存在这样的功能。对于任何寻找解决方案的人来说,这对我来说效果很好

def rgb_to_rgba(rgb_value, alpha):
"""
Adds the alpha channel to an RGB Value and returns it as an RGBA Value
:param rgb_value: Input RGB Value
:param alpha: Alpha Value to add in range [0,1]
:return: RGBA Value
"""
return f"rgba{rgb_value[3:-1]}, {alpha})"

关于python - 将 RGB 颜色转换为 RGBA 的 Plotly 函数? (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56971587/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com