plusDarker
A mode that adds the inverse of the color components of the source and background images, and then inverts the result, producing a darkened composite.
Declaration
static var plusDarker: GraphicsContext.BlendMode { get }Discussion
This mode implements the equation R = MAX(0, 1 - ((1 - D) + (1 - S))) where
Ris the composite image.Sis the source image.Dis the background.