📜  R编程中获取指定阴影的十六进制码——rgb()函数

📅  最后修改于: 2022-05-13 01:54:46.653000             🧑  作者: Mango

R编程中获取指定阴影的十六进制码——rgb()函数

R语言中的rgb()函数用于在0到1之间指定红色、绿色和蓝色的明暗度。进一步将这三个基本成分的指定明暗度混合在一起形成新的明暗度。红色、绿色和蓝色的阴影也可以在 0 到 255 之间指定。但是在使用此范围时会添加一个参数 max=255。该函数返回指定阴影对应的十六进制代码。

示例 1:

Python3
# R program to illustrate
# rgb function
 
# Calling the rgb() function with
# shade of color between 0 to 1
rgb(0, 1, 0.5)
rgb(0.9, 0.7, 0.8)
rgb(0, 0.7, 1)
rgb(0, 0, 0)
rgb(1, 1, 1)


Python3
# R program to illustrate
# rgb function
 
# Calling the rgb() function with
# shade of color between 0 and 255
# with added argument max = 255
rgb(0, 0, 0, max = 255)
rgb(5, 7, 60, max = 255)
rgb(255, 255, 255, max = 255)


输出:

[1] "#00FF80"
[1] "#E6B3CC"
[1] "#00B3FF"
[1] "#000000"
[1] "#FFFFFF"

示例 2:

Python3

# R program to illustrate
# rgb function
 
# Calling the rgb() function with
# shade of color between 0 and 255
# with added argument max = 255
rgb(0, 0, 0, max = 255)
rgb(5, 7, 60, max = 255)
rgb(255, 255, 255, max = 255)

输出:

[1] "#000000"
[1] "#05073C"
[1] "#FFFFFF"