hex_to_xyz | R Documentation |
Convert hex RGB values to XYZ space.
hex_to_xyz(hex, transformation = "sRGB", linear_func = NULL)
hex |
A character vector containing hex representations of RGB colours. |
transformation |
An option in |
linear_func |
A function to convert RGB colour space into non-linear RGB space. Used only if a custom transformation matrix is provided. Transformation skips if no function is provided under a user-defined transformation matrix. See: https://en.wikipedia.org/wiki/SRGB. |
A tibble
of X, Y and Z colour space values.
red <- sample(x = 1:255, size = 10, replace = TRUE)
green <- sample(x = 1:255, size = 10, replace = TRUE)
blue <- sample(x = 1:255, size = 10, replace = TRUE)
hex_to_xyz(rgb_to_hex(data.frame(r = red, g = green, b = blue)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.