当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 rgb()用法及代码示例


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

用法: rgb(a, b, c, max = 255) 
参数: 
a: shade of color red 
b: shade of color green 
c: shade of color blue 
max: added argument 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)

输出:



[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"




相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Get the Hexadecimal Code of the Specified Shade in R Programming – rgb() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。