Example usage for Java javafx.scene.effect BlendMode fields, constructors, methods, implement or subclass
The text is from its open source code.
BlendMode | SRC_OVER The top input is blended over the bottom input. |
BlendMode | MULTIPLY The color components from the first input are multiplied with those from the second input. |
BlendMode | OVERLAY The input color components are either multiplied or screened, depending on the bottom input color. |
BlendMode | DARKEN The darker of the color components from the two inputs are selected to produce the resulting color. |
BlendMode | EXCLUSION The color components from the two inputs are multiplied and doubled, and then subtracted from the sum of the bottom input color components, to produce the resulting color. |
BlendMode | RED The red component of the bottom input is replaced with the red component of the top input; the other color components are unaffected. |