La función rgb() en R Language se usa para especificar el tono del color rojo, verde y azul entre 0 y 1. Además, los tonos especificados de estos tres componentes básicos se mezclarán para formar un nuevo tono. El tono del color rojo, verde y azul también se puede especificar entre 0 y 255. Pero habrá un argumento adicional max=255 al usar este rango. Esta función devuelve el código hexadecimal correspondiente del tono especificado.
Sintaxis: rgb(a, b, c, max = 255)
Parámetros:
a: matiz de color rojo
b: matiz de color verde
c: matiz de color azul
max: argumento añadido max=255
Ejemplo 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)
Producción:
[1] "#00FF80" [1] "#E6B3CC" [1] "#00B3FF" [1] "#000000" [1] "#FFFFFF"
Ejemplo 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)
Producción:
[1] "#000000" [1] "#05073C" [1] "#FFFFFF"
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA