Generated Object
javafx.scene.effect.SepiaTone
Attributes
This node takes the attributes of the javafx.scene.effect.SepiaTone class, see javafx.scene.effect.SepiaTone.
Content
An optional Effect may be provides that is used as input to the SepiaTone effect.
Usage
Creates a SepiaTone effect applied to a JavaFX Node.
Examples
| Code Block |
|---|
GroovyFX.start({
def sg = new SceneGraphBuilder(it);
sg.stage(
title: "Blend Effect Example",
x: 100, y: 100, width: 400, height:400,
visible: true,
style: "decorated",
) {
scene(fill: hsb(128, 0.5, 0.5, 0.5) ) {
text(x: 10, y: 140, cache: true, content: "Blurry Text", fill: "red", font: "bold 36pt") {
sepiaTone(level: 0.7)
}
}
}
});
|