Enum BlendingMode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<BlendingMode>

    public enum BlendingMode
    extends java.lang.Enum<BlendingMode>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      Add  
      Color
      Creates a color with the hue and saturation of the source color and the luminosity of the backdrop color.
      ColorBurn
      Darkens the backdrop color to reflect the source color.
      ColorDodge
      Brightens the backdrop color to reflect the source color.
      Darken
      Selects the darker of the backdrop and source colors.
      Difference
      Subtracts the darker of the two constituent colors from the lighter color.
      Divide
      Looks at the color information in each channel and divides the blend color from the base color.
      HardLight
      Multiplies or screens the colors, depending on the source color value.
      HardMix
      Adds the red, green and blue channel values of the blend color to the RGB values of the base color.
      Hue
      Creates a color with the hue of the source color and the saturation and luminosity of the backdrop color.
      Lighten
      Selects the lighter of the backdrop and source colors.
      LinearBurn
      Looks at the color information in each channel and darkens the base color to reflect the blend color by decreasing the brightness.
      LinearDodge
      Looks at the color information in each channel and brightens the base color to reflect the blend color by increasing the brightness.
      LinearLight
      Burns or dodges the colors by decreasing or increasing the brightness, depending on the blend color.
      Luminosity
      Creates a color with the luminosity of the source color and the hue and saturation of the backdrop color.
      Multiply
      The source color is multiplied by the destination color and replaces the destination.
      Normal
      Specifies no blending.
      Overlay
      Multiplies or screens the colors, depending on the backdrop color value.
      PinLight
      Replaces the colors, depending on the blend color.
      Saturation
      Creates a color with the saturation of the source color and the hue and luminosity of the backdrop color.
      Screen
      Multiplies the complements of the backdrop and source color values, then complements the result.
      SoftLight
      Darkens or lightens the colors, depending on the source color value.
      SourceOver  
      Substract
      Looks at the color information in each channel and subtracts the blend color from the base color.
      VividLight
      Burns or dodges the colors by increasing or decreasing the contrast, depending on the blend color.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static BlendingMode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static BlendingMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • Normal

        public static final BlendingMode Normal
        Specifies no blending. The blending formula simply selects the source color.
      • Darken

        public static final BlendingMode 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.
      • Multiply

        public static final BlendingMode Multiply
        The source color is multiplied by the destination color and replaces the destination. The resultant color is always at least as dark as either the source or destination color. Multiplying any color with black results in black. Multiplying any color with white preserves the original color.
      • ColorBurn

        public static final BlendingMode ColorBurn
        Darkens the backdrop color to reflect the source color. Painting with white produces no change.
      • LinearBurn

        public static final BlendingMode LinearBurn
        Looks at the color information in each channel and darkens the base color to reflect the blend color by decreasing the brightness. Blending with white produces no change.
      • Lighten

        public static final BlendingMode 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.
      • Screen

        public static final BlendingMode 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.
      • ColorDodge

        public static final BlendingMode ColorDodge
        Brightens the backdrop color to reflect the source color. Painting with black produces no changes.
      • LinearDodge

        public static final BlendingMode LinearDodge
        Looks at the color information in each channel and brightens the base color to reflect the blend color by increasing the brightness. Blending with black produces no change.
      • Overlay

        public static final BlendingMode 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. Overlay is the inverse of the ‘hardlight’ blend mode.
      • SoftLight

        public static final BlendingMode SoftLight
        Darkens or lightens the colors, depending on the source color value. The effect is similar to shining a diffused spotlight on the backdrop
      • HardLight

        public static final BlendingMode HardLight
        Multiplies or screens the colors, depending on the source color value. The effect is similar to shining a harsh spotlight on the backdrop.
      • VividLight

        public static final BlendingMode VividLight
        Burns or dodges the colors by increasing or decreasing the contrast, depending on the blend color. If the blend color (light source) is lighter than 50% gray, the image is lightened by decreasing the contrast. If the blend color is darker than 50% gray, the image is darkened by increasing the contrast.
      • LinearLight

        public static final BlendingMode LinearLight
        Burns or dodges the colors by decreasing or increasing the brightness, depending on the blend color. If the blend color (light source) is lighter than 50% gray, the image is lightened by increasing the brightness. If the blend color is darker than 50% gray, the image is darkened by decreasing the brightness.
      • PinLight

        public static final BlendingMode PinLight
        Replaces the colors, depending on the blend color. If the blend color (light source) is lighter than 50% gray, pixels darker than the blend color are replaced, and pixels lighter than the blend color do not change. If the blend color is darker than 50% gray, pixels lighter than the blend color are replaced, and pixels darker than the blend color do not change. This is useful for adding special effects to an image.
      • HardMix

        public static final BlendingMode HardMix
        Adds the red, green and blue channel values of the blend color to the RGB values of the base color. If the resulting sum for a channel is 255 or greater, it receives a value of 255; if less than 255, a value of 0. Therefore, all blended pixels have red, green, and blue channel values of either 0 or 255. This changes all ixels to primary additive colors (red, green, or blue), white, or black.
      • Difference

        public static final BlendingMode 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.
      • Substract

        public static final BlendingMode Substract
        Looks at the color information in each channel and subtracts the blend color from the base color.
      • Divide

        public static final BlendingMode Divide
        Looks at the color information in each channel and divides the blend color from the base color.
      • Hue

        public static final BlendingMode Hue
        Creates a color with the hue of the source color and the saturation and luminosity of the backdrop color.
      • Saturation

        public static final BlendingMode 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 BlendingMode 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 BlendingMode 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 Detail

      • values

        public static BlendingMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (BlendingMode c : BlendingMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static BlendingMode valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null