Basics
Guides
API Reference
Basics
Guides
API Reference
[12:7] extends: FxObj
Wraps JavaFX ColorAdjust, an effect that adjusts the hue, saturation, brightness, and contrast of a node's pixels. Each property accepts a value between -1.0 and 1.0, where 0.0 leaves that channel unchanged. Positive values increase the channel and negative values decrease it. Apply it to any node via the node's setEffect() method.
ColorAdjust ()
Creates a new ColorAdjust effect with all adjustments set to 0.0 (no change).
setHue (double H)
Sets the hue adjustment applied to each pixel.
H is a double in the range -1.0 to 1.0; 0.0 leaves hue unchanged.this objectsetSaturation (double S)
Sets the saturation adjustment applied to each pixel.
S is a double in the range -1.0 to 1.0; 0.0 leaves saturation unchanged.this objectsetBrightness (double B)
Sets the brightness adjustment applied to each pixel.
B is a double in the range -1.0 to 1.0; 0.0 leaves brightness unchanged.this objectsetContrast (double C)
Sets the contrast adjustment applied to each pixel.
C is a double in the range -1.0 to 1.0; 0.0 leaves contrast unchanged.this object
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.