Java javafx.scene.effect BlendMode fields, constructors, methods, implement or subclass

Example usage for Java javafx.scene.effect BlendMode fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javafx.scene.effect BlendMode.

The text is from its open source code.

Field

BlendModeSRC_OVER
The top input is blended over the bottom input.
BlendModeMULTIPLY
The color components from the first input are multiplied with those from the second input.
BlendModeOVERLAY
The input color components are either multiplied or screened, depending on the bottom input color.
BlendModeDARKEN
The darker of the color components from the two inputs are selected to produce the resulting color.
BlendModeEXCLUSION
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.
BlendModeRED
The red component of the bottom input is replaced with the red component of the top input; the other color components are unaffected.