Write Hexadecimal Color Descriptions
Given a color object, this function writes a file containing the hexadecimal representation of the colors in the object.
writehex(x, file = "")
x |
a color object. |
file |
the name of the file to be written. |
This function converts the given color object to RGB and then writes
hexadecimal strings (of the form #RRGGBB
) representing the colors to
the specified file.
The name of the file is returned as the value of the function.
Ross Ihaka
set.seed(1) x <- RGB(runif(10), runif(10), runif(10)) ## IGNORE_RDIFF_BEGIN writehex(x, file.path(tempdir(), "random.txt")) ## IGNORE_RDIFF_END
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.