Package com.evopdf
Enum Blending
- All Implemented Interfaces:
Serializable
,Comparable<Blending>
,java.lang.constant.Constable
The blending function for transparent rendering mode
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCreates a color with the hue and saturation of the source color and the luminosity of the backdrop color.Darkens the backdrop color to reflect the source color.Brightens the backdrop color to reflect the source color.Selects the darker of the backdrop and source colors.Subtracts the darker of the two constituent colors from the lighter color.Produces an effect similar to that of the Difference mode but lower in contrast.Multiplies or screens the colors, depending on the source color value.Creates a color with the hue of the source color and the saturation and luminosity of the backdrop color.Selects the lighter of the backdrop and source colors.Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color.Multiplies the backdrop and source color valuesSelects the source color, ignoring the backdropMultiplies or screens the colors, depending on the backdrop color value.Creates a color with the saturation of the source color and the hue and luminosity of the backdrop color.Multiplies the complements of the backdrop and source color values, then complements the resultDarkens or lightens the colors, depending on the source color value. -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Normal
Selects the source color, ignoring the backdrop -
Multiply
Multiplies the backdrop and source color values -
Screen
Multiplies the complements of the backdrop and source color values, then complements the result -
Overlay
Multiplies or screens the colors, depending on the backdrop color value. Source colors overlay the backdrop while preserving its highlights and shadows. The backdrop color is not replaced but is mixed with the source color to reflect the lightness or darkness of the backdrop -
Darken
Selects the darker of the backdrop and source colors. -
Lighten
Selects the lighter of the backdrop and source colors. -
ColorDodge
Brightens the backdrop color to reflect the source color. Painting with black produces no changes. -
ColorBurn
Darkens the backdrop color to reflect the source color. Painting with white produces no change. -
HardLight
Multiplies or screens the colors, depending on the source color value. The effect is similar to shining a harsh spotlight on the backdrop. -
SoftLight
Darkens or lightens the colors, depending on the source color value. The effect is similar to shining a diffused spotlight on the backdrop. -
Difference
Subtracts the darker of the two constituent colors from the lighter color. -
Exclusion
Produces an effect similar to that of the Difference mode but lower in contrast. Painting with white inverts the backdrop color; painting with black produces no change. -
Hue
Creates a color with the hue of the source color and the saturation and luminosity of the backdrop color. -
Saturation
Creates a color with the saturation of the source color and the hue and luminosity of the backdrop color. Painting with this mode in an area of the backdrop that is a pure gray (no saturation) produces no change. -
Color
Creates a color with the hue and saturation of the source color and the luminosity of the backdrop color. -
Luminosity
Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color. This produces an inverse effect to that of the Color mode.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public int value()
-