Adjust - Maple Help

Online Help

All Products    Maple    MapleSim


ColorTools

  

Adjust

  

create a new color with different lightness and chroma

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Adjust(color, chroma=c, lightness=l)

Parameters

color

-

color format recognized by ColorTools

c

-

(optional) numeric adjustment to chroma between -100 and 100

l

-

(optional) numeric adjustment to lightness between -100 and 100

Description

• 

The Adjust command creates a new Color structure which has the same hue as the input color, but with altered lightness and/or saturation. It uses the cylindrical perceptual color space LCH to make the adjustment and then projects back to a displayable color in the original colorspace unless the raw option is given.

• 

Contrast this command with the quartet of Lighten, Darken, Saturate, and Desaturate which use the HSV non-perceptual colorspace.

Examples

withColorTools:

AdjustDarkRed,lightness=15::LightenDarkRed,1.5

RGB : 0.726 0.217 0.139::RGB : 0.818 0 0

(1)

AdjustDarkRed,lightness=15::DarkenDarkRed,1.5

RGB : 0.393 0.0447 0::RGB : 0.363 0 0

(2)

AdjustDarkRed,lightness=45,raw::AdjustDarkRed,lightness=45

*RGB* : 1.1 0.538 0.419::RGB : 0.992 0.616 0.527

(3)

AdjustDarkRed,chroma=15::SaturateDarkRed,1.5

RGB : 0.582 0.0787 0.0399::RGB : 0.545 0 0

(4)

AdjustDarkRed,chroma=15::DesaturateDarkRed,1.5

RGB : 0.492 0.126 0.0727::RGB : 0.545 0.182 0.182

(5)

AdjustDarkRed,chroma=15,raw::AdjustDarkRed,chroma=15

*RGB* : 0.596 -0.207 -0.0785::RGB : 0.582 0.0787 0.0399

(6)

Compatibility

• 

The ColorTools[Adjust] command was introduced in Maple 18.

• 

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

See Also

ColorTools

ColorTools/ColorSpaces

ColorTools[Color]

ColorTools[Darken]

ColorTools[Desaturate]

ColorTools[Lighten]

ColorTools[Saturate]

ColorTools[ToDisplayable]