82
JavaFX SepiaTone Effect
SepiaTone Effect basically change the tone of the image to the reddish brown color. In JavaFX, the class javafx.scene.effect.SepiaTone represents SepiaTone effect. We just need to instantiate this class in order to generate an appropriate effect.
Properties
The properties of the class along with the setter methods are described in the following table.
Property | Description | Setter Methods |
---|---|---|
input | This is a Effect (Object) type property. It represents the input for this effect. | setInput(Effect value) |
level | This is a double type property. It represents level value which control the intensity of the sepia effect. | setLevel(Double value) |
Constructors
The class contains two constructors
- public Sepiatone() : creates a new instance with default parameters
- public Sepiatone(double level) : Creates a new instance with a specified level value.
Example:
Next TopicJavaFX Shadow Effect