HexToString - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ColorTools

  

HexToString

  

look up color name by hex string

 

Calling Sequence

Parameters

Options

Description

Examples

Compatibility

Calling Sequence

HexToString(hex, opts)

Parameters

hex

-

string; hex code for color, can be "#rrggbb" or "rrggbb"

opts

-

(optional) equation(s) of the form option=value where option is new or default

Options

• 

new = boolean; indicates whether to restrict to new color names (true), old color names (false), or no restriction (the default)

• 

default = string; default value to return when there is no match

Description

• 

The HexToString procedure converts from a hex color value to a translated color name (based upon the current locale in the Maplets context).

• 

The new option acts as follows:

new=true: only search new color names

new=false: only search old color names

default (option new not specified): search both new and old color names

• 

If a default value is provided, then that is returned when no match is found, otherwise an error occurs.

Examples

withColorTools:

HexToString#00FF00

Lime

(1)

HexToString#0F0,new=false

green

(2)

HexToStringFF0000

Red

(3)

HexToStringF00

Red

(4)

HexToStringI like cat videos

Error, (in ColorTools:-HexToString) invalid hex color value: I like cat videos

Compatibility

• 

The ColorTools[HexToString] command was introduced in Maple 16.

• 

For more information on Maple 16 changes, see Updates in Maple 16.

See Also

ColorTools

ColorTools[HexToRGB24]