PdfBlendMode enum
Values
- normal → const PdfBlendMode
-
Selects the source color, ignoring the backdrop
- multiply → const PdfBlendMode
-
Multiplies the backdrop and source color values
- screen → const PdfBlendMode
-
Multiplies the complements of the backdrop and source color values, then complements the result
- overlay → const PdfBlendMode
-
Multiplies or screens the colors, depending on the backdrop color value
- darken → const PdfBlendMode
-
Selects the darker of the backdrop and source colors
- lighten → const PdfBlendMode
-
Selects the lighter of the backdrop and source colors
- colorDodge → const PdfBlendMode
-
Brightens the backdrop color to reflect the source color. Painting with black produces no changes.
- colorBurn → const PdfBlendMode
-
Darkens the backdrop color to reflect the source color
- hardLight → const PdfBlendMode
-
Multiplies or screens the colors, depending on the source color value
- softLight → const PdfBlendMode
-
Darkens or lightens the colors, depending on the source color value
- difference → const PdfBlendMode
-
Subtracts the darker of the two constituent colors from the lighter color
- exclusion → const PdfBlendMode
-
Produces an effect similar to that of the Difference mode but lower in contrast
- hue → const PdfBlendMode
-
Creates a color with the hue of the source color and the saturation and luminosity of the backdrop color
- saturation → const PdfBlendMode
-
Creates a color with the saturation of the source color and the hue and luminosity of the backdrop color
- color → const PdfBlendMode
-
Creates a color with the hue and saturation of the source color and the luminosity of the backdrop color
- luminosity → const PdfBlendMode
-
Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
PdfBlendMode> - A constant List of the values in this enum, in order of their declaration.