com.spire.pdf.graphics
Enum PdfBlendMode
java.lang.Object
   java.lang.Enum<PdfBlendMode>
java.lang.Enum<PdfBlendMode>
       com.spire.pdf.graphics.PdfBlendMode
com.spire.pdf.graphics.PdfBlendMode
- All Implemented Interfaces: 
- java.lang.Comparable<PdfBlendMode>
- public enum PdfBlendMode 
- extends java.lang.Enum<PdfBlendMode>
Specifies the blend mode for transparency.
| Enum Constant Summary | 
| ColorCreates a color with the hue and saturation of
 the source color and the luminosity of the backdrop
 color.
 | 
| ColorBurnDarkens the backdrop color to reflect the source color.
 | 
| ColorDodgeBrightens the backdrop color to reflect the source color.
 | 
| DarkenSelects the darker of the backdrop and source colors.
 | 
| DifferenceSubtracts the darker of the two constituent colors from the lighter color.
 | 
| ExclusionProduces an effect similar to that of the Difference mode
 but lower in contrast.
 | 
| HardLightMultiplies or screens the colors, depending on the source color value.
 | 
| HueCreates a color with the hue of the source color and
 the saturation and luminosity of the backdrop color.
 | 
| LightenSelects the lighter of the backdrop and source colors.
 | 
| LuminosityCreates a color with the luminosity of the source color
 and the hue and saturation of the backdrop color.
 | 
| MultiplyMultiplies the backdrop and source color values.
 | 
| NormalSelects the source color, ignoring the backdrop.
 | 
| OverlayMultiplies or screens the colors, depending on
 the backdrop color value.
 | 
| SaturationCreates a color with the saturation of the source color
 and the hue and luminosity of the backdrop color.
 | 
| ScreenMultiplies the complements of the backdrop and source
 color values, then complements the result.
 | 
| SoftLightDarkens or lightens the colors, depending on the source color value.
 | 
 
| Method Summary | 
|  java.lang.String | getName()Get pdf blend mode name
 | 
|  int | getValue()Get pdf blend mode value
 | 
 
Normal
public static final PdfBlendMode Normal
- Selects the source color, ignoring the backdrop.
 
 
Multiply
public static final PdfBlendMode Multiply
- Multiplies the backdrop and source color values.
 The result color is always at least as dark as either
 of the two constituent colors. Multiplying
 any color with black produces black; multiplying
 with white leaves the original color unchanged.
 Painting successive overlapping objects with a color
 other than black or white produces progressively darker colors.
 
 
Screen
public static final PdfBlendMode Screen
- Multiplies the complements of the backdrop and source
 color values, then complements the result. The result
 color is always at least as light as either of the two
 constituent colors. Screening any color with white
 produces white; screening with black leaves the original
 color unchanged. The effect is similar to projecting
 multiple photographic slides simultaneously onto a single screen.
 
 
Overlay
public static final PdfBlendMode 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
public static final PdfBlendMode Darken
- Selects the darker of the backdrop and source colors.
 The backdrop is replaced with the source where the source
 is darker; otherwise, it is left unchanged.
 
 
Lighten
public static final PdfBlendMode Lighten
- Selects the lighter of the backdrop and source colors.
 The backdrop is replaced with the source where the source
 is lighter; otherwise, it is left unchanged.
 
 
ColorDodge
public static final PdfBlendMode ColorDodge
- Brightens the backdrop color to reflect the source color.
 Painting with black produces no changes.
 
 
ColorBurn
public static final PdfBlendMode ColorBurn
- Darkens the backdrop color to reflect the source color.
 Painting with white produces no change.
 
 
HardLight
public static final PdfBlendMode 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
public static final PdfBlendMode 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
public static final PdfBlendMode Difference
- Subtracts the darker of the two constituent colors from the lighter color.
 Painting with white inverts the backdrop color; painting with black produces no change.
 
 
Exclusion
public static final PdfBlendMode 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
public static final PdfBlendMode Hue
- Creates a color with the hue of the source color and
 the saturation and luminosity of the backdrop color.
 
 
Saturation
public static final PdfBlendMode 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
public static final PdfBlendMode Color
- Creates a color with the hue and saturation of
 the source color and the luminosity of the backdrop
 color. This preserves the gray levels of the backdrop
 and is useful for coloring monochrome images or tinting color images.
 
 
Luminosity
public static final PdfBlendMode 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.
 
 
getName
public java.lang.String getName()
- Get pdf blend mode name
 
- 
 
getValue
public int getValue()
- Get pdf blend mode value
 
-