BlendMode enum

The Porter-Duff algorithm to use for blending.

The values in this enum are expected to match exactly the values of the similarly named enum from dart:ui. They must not be removed even if they are unused.

Inheritance

Constructors

BlendMode()
const

Values

clear → const BlendMode

Drop both the source and destination images, leaving nothing.

This corresponds to the "clear" Porter-Duff operator.

src → const BlendMode

Drop the destination image, only paint the source image.

Conceptually, the destination is first cleared, then the source image is painted.

This corresponds to the "Copy" Porter-Duff operator.

dst → const BlendMode

Drop the source image, only paint the destination image.

Conceptually, the source image is discarded, leaving the destination untouched.

This corresponds to the "Destination" Porter-Duff operator.

srcOver → const BlendMode

Composite the source image over the destination image.

This is the default value. It represents the most intuitive case, where shapes are painted on top of what is below, with transparent areas showing the destination layer.

This corresponds to the "Source over Destination" Porter-Duff operator, also known as the Painter's Algorithm.

dstOver → const BlendMode

Composite the source image under the destination image.

This is the opposite of srcOver.

This corresponds to the "Destination over Source" Porter-Duff operator.

This is useful when the source image should have been painted before the destination image, but could not be.

srcIn → const BlendMode

Show the source image, but only where the two images overlap. The destination image is not rendered, it is treated merely as a mask. The color channels of the destination are ignored, only the opacity has an effect.

To show the destination image instead, consider dstIn.

To reverse the semantic of the mask (only showing the source where the destination is absent, rather than where it is present), consider srcOut.

This corresponds to the "Source in Destination" Porter-Duff operator.

dstIn → const BlendMode

Show the destination image, but only where the two images overlap. The source image is not rendered, it is treated merely as a mask. The color channels of the source are ignored, only the opacity has an effect.

To show the source image instead, consider srcIn.

To reverse the semantic of the mask (only showing the source where the destination is present, rather than where it is absent), consider dstOut.

This corresponds to the "Destination in Source" Porter-Duff operator.

srcOut → const BlendMode

Show the source image, but only where the two images do not overlap. The destination image is not rendered, it is treated merely as a mask. The color channels of the destination are ignored, only the opacity has an effect.

To show the destination image instead, consider dstOut.

To reverse the semantic of the mask (only showing the source where the destination is present, rather than where it is absent), consider srcIn.

This corresponds to the "Source out Destination" Porter-Duff operator.

dstOut → const BlendMode

Show the destination image, but only where the two images do not overlap. The source image is not rendered, it is treated merely as a mask. The color channels of the source are ignored, only the opacity has an effect.

To show the source image instead, consider srcOut.

To reverse the semantic of the mask (only showing the destination where the source is present, rather than where it is absent), consider dstIn.

This corresponds to the "Destination out Source" Porter-Duff operator.

srcATop → const BlendMode

Composite the source image over the destination image, but only where it overlaps the destination.

This corresponds to the "Source atop Destination" Porter-Duff operator.

This is essentially the srcOver operator, but with the output's opacity channel being set to that of the destination image instead of being a combination of both image's opacity channels.

For a variant with the destination on top instead of the source, see dstATop.

dstATop → const BlendMode

Composite the destination image over the source image, but only where it overlaps the source.

This corresponds to the "Destination atop Source" Porter-Duff operator.

This is essentially the dstOver operator, but with the output's opacity channel being set to that of the source image instead of being a combination of both image's opacity channels.

For a variant with the source on top instead of the destination, see srcATop.

xor → const BlendMode

Apply a bitwise xor operator to the source and destination images. This leaves transparency where they would overlap.

This corresponds to the "Source xor Destination" Porter-Duff operator.

plus → const BlendMode

Sum the components of the source and destination images.

Transparency in a pixel of one of the images reduces the contribution of that image to the corresponding output pixel, as if the color of that pixel in that image was darker.

This corresponds to the "Source plus Destination" Porter-Duff operator.

modulate → const BlendMode

Multiply the color components of the source and destination images.

This can only result in the same or darker colors (multiplying by white, 1.0, results in no change; multiplying by black, 0.0, results in black).

When compositing two opaque images, this has similar effect to overlapping two transparencies on a projector.

For a variant that also multiplies the alpha channel, consider multiply.

See also:

screen → const BlendMode

Multiply the inverse of the components of the source and destination images, and inverse the result.

Inverting the components means that a fully saturated channel (opaque white) is treated as the value 0.0, and values normally treated as 0.0 (black, transparent) are treated as 1.0.

This is essentially the same as modulate blend mode, but with the values of the colors inverted before the multiplication and the result being inverted back before rendering.

This can only result in the same or lighter colors (multiplying by black, 1.0, results in no change; multiplying by white, 0.0, results in white). Similarly, in the alpha channel, it can only result in more opaque colors.

This has similar effect to two projectors displaying their images on the same screen simultaneously.

See also:

overlay → const BlendMode

Multiply the components of the source and destination images after adjusting them to favor the destination.

Specifically, if the destination value is smaller, this multiplies it with the source value, whereas is the source value is smaller, it multiplies the inverse of the source value with the inverse of the destination value, then inverts the result.

Inverting the components means that a fully saturated channel (opaque white) is treated as the value 0.0, and values normally treated as 0.0 (black, transparent) are treated as 1.0.

See also:

  • modulate, which always multiplies the values.
  • screen, which always multiplies the inverses of the values.
  • hardLight, which is similar to overlay but favors the source image instead of the destination image.
darken → const BlendMode

Composite the source and destination image by choosing the lowest value from each color channel.

The opacity of the output image is computed in the same way as for srcOver.

lighten → const BlendMode

Composite the source and destination image by choosing the highest value from each color channel.

The opacity of the output image is computed in the same way as for srcOver.

colorDodge → const BlendMode

Divide the destination by the inverse of the source.

Inverting the components means that a fully saturated channel (opaque white) is treated as the value 0.0, and values normally treated as 0.0 (black, transparent) are treated as 1.0.

colorBurn → const BlendMode

Divide the inverse of the destination by the source, and inverse the result.

Inverting the components means that a fully saturated channel (opaque white) is treated as the value 0.0, and values normally treated as 0.0 (black, transparent) are treated as 1.0.

hardLight → const BlendMode

Multiply the components of the source and destination images after adjusting them to favor the source.

Specifically, if the source value is smaller, this multiplies it with the destination value, whereas is the destination value is smaller, it multiplies the inverse of the destination value with the inverse of the source value, then inverts the result.

Inverting the components means that a fully saturated channel (opaque white) is treated as the value 0.0, and values normally treated as 0.0 (black, transparent) are treated as 1.0.

See also:

  • modulate, which always multiplies the values.
  • screen, which always multiplies the inverses of the values.
  • overlay, which is similar to hardLight but favors the destination image instead of the source image.
softLight → const BlendMode

Use colorDodge for source values below 0.5 and colorBurn for source values above 0.5.

This results in a similar but softer effect than overlay.

See also:

  • color, which is a more subtle tinting effect.
difference → const BlendMode

Subtract the smaller value from the bigger value for each channel.

Compositing black has no effect; compositing white inverts the colors of the other image.

The opacity of the output image is computed in the same way as for srcOver.

The effect is similar to exclusion but harsher.

exclusion → const BlendMode

Subtract double the product of the two images from the sum of the two images.

Compositing black has no effect; compositing white inverts the colors of the other image.

The opacity of the output image is computed in the same way as for srcOver.

The effect is similar to difference but softer.

multiply → const BlendMode

Multiply the components of the source and destination images, including the alpha channel.

This can only result in the same or darker colors (multiplying by white, 1.0, results in no change; multiplying by black, 0.0, results in black).

Since the alpha channel is also multiplied, a fully-transparent pixel (opacity 0.0) in one image results in a fully transparent pixel in the output. This is similar to dstIn, but with the colors combined.

For a variant that multiplies the colors but does not multiply the alpha channel, consider modulate.

hue → const BlendMode

Take the hue of the source image, and the saturation and luminosity of the destination image.

The effect is to tint the destination image with the source image.

The opacity of the output image is computed in the same way as for srcOver. Regions that are entirely transparent in the source image take their hue from the destination.

See also:

  • color, which is a similar but stronger effect as it also applies the saturation of the source image.
  • HSVColor, which allows colors to be expressed using Hue rather than the red/green/blue channels of Color.
saturation → const BlendMode

Take the saturation of the source image, and the hue and luminosity of the destination image.

The opacity of the output image is computed in the same way as for srcOver. Regions that are entirely transparent in the source image take their saturation from the destination.

See also:

  • color, which also applies the hue of the source image.
  • luminosity, which applies the luminosity of the source image to the destination.
color → const BlendMode

Take the hue and saturation of the source image, and the luminosity of the destination image.

The effect is to tint the destination image with the source image.

The opacity of the output image is computed in the same way as for srcOver. Regions that are entirely transparent in the source image take their hue and saturation from the destination.

See also:

  • hue, which is a similar but weaker effect.
  • softLight, which is a similar tinting effect but also tints white.
  • saturation, which only applies the saturation of the source image.
luminosity → const BlendMode

Take the luminosity of the source image, and the hue and saturation of the destination image.

The opacity of the output image is computed in the same way as for srcOver. Regions that are entirely transparent in the source image take their luminosity from the destination.

See also:

  • saturation, which applies the saturation of the source image to the destination.
  • ImageFilter.blur, which can be used with BackdropFilter for a related effect.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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<BlendMode>
A constant List of the values in this enum, in order of their declaration.