xyz_to_hex | R Documentation |
Convert from XYZ space into hex RGB colour values.
xyz_to_hex(xyz, transformation = "sRGB", linear_func = NULL)
xyz |
A dataframe or matrix with X, Y and Z colour channels located in the columns 1 to 3, respectively. |
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 character vector with hex representations of RGB colour channels.
x <- sample(x = 40:60, size = 10, replace = TRUE)
y <- sample(x = 40:60, size = 10, replace = TRUE)
z <- sample(x = 40:60, size = 10, replace = TRUE)
xyz_to_hex(data.frame(x = x, y = y, z = z))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.