ColorFilter
data class ColorFilter
kotlin.Any | |
↳ | androidx.ui.graphics.ColorFilter |
Creates a color filter that applies the blend mode given as the second argument. The source color is the one given as the first argument, and the destination color is the one from the layer being composited.
The output of this filter is then composited into the background according to the Paint.blendMode, using the output of this filter as the source and the background as the destination.
Summary
Public constructors |
|
---|---|
Creates a color filter that applies the blend mode given as the second argument. |
Public methods |
|
---|---|
String |
toString() |
Properties |
|
---|---|
BlendMode | |
Color |
Public constructors
<init>
ColorFilter(
color: Color,
blendMode: BlendMode)
Creates a color filter that applies the blend mode given as the second argument. The source color is the one given as the first argument, and the destination color is the one from the layer being composited.
The output of this filter is then composited into the background according to the Paint.blendMode, using the output of this filter as the source and the background as the destination.
Public methods
toString
fun toString(): String
Properties
blendMode
val blendMode: BlendMode
color
val color: Color