readhex.Rd
This function reads a set of hexadecimal color descriptions from a file and creates a color object containing the corresponding colors.
readhex(file = "", class = "RGB")
The file containing the color descriptions.
The kind of color object to be returned.
An color object of the specified class containing the color descriptions.
The file is assumed to contain hexadecimal color descriptions of the form
#RRGGBB
.
if (FALSE) {
rgb <- readhex("pastel.txt")
hsv <- readhex("pastel.txt", "HSV")
}