encode_colour {farver} | R Documentation |
Encode colours into RGB hex-strings
Description
This is a version of grDevices::rgb()
that works with the standard colour
format used in farver (matrix or data.frame with colours in rows). It further
support taking input from any colour space.
Usage
encode_colour(colour, alpha = NULL, from = "rgb", white = "D65")
Arguments
colour |
A numeric matrix (or an object coercible to one) with colours
encoded in the rows and the different colour space values in the columns. For
all colourspaces except |
alpha |
A numeric vector between 0 and 1. Will be recycled to the number
of rows in |
from |
The input colour space. Allowed values are: |
white |
The white reference of the input colour space. Will only have an
effect for relative colour spaces such as Lab and luv. Any value accepted by
|
Value
A character vector with colours encoded as #RRGGBB(AA)
Handling of non-finite and out of bounds values
NA
, NaN
, -Inf
, and Inf
are treated as invalid input and will result
in NA
values for the colour. If a given colourspace has finite bounds in
some of their channels, the input will be capped before conversion, and the
output will be capped before returning, so that both input and output colours
are valid colours in their respective space. This means that converting back
and forth between two colourspaces may result in a change in the colour if
the gamut of one of the spaces is less than the other.
Note
The output may differ slightly from that of grDevices::rgb()
since
rgb()
doesn't round numeric values correctly.
See Also
Other encoding and decoding functions:
decode_colour()
,
manip_channel
Examples
spectrum <- decode_colour(rainbow(10))
encode_colour(spectrum)
# Attach alpha values
encode_colour(spectrum, alpha = c(0.5, 1))
# Encode from a different colour space
spectrum_hcl <- convert_colour(spectrum, 'rgb', 'hcl')
encode_colour(spectrum_hcl, from = 'hcl')