Enum RasterOperations
A raster-operation code. These codes define how the color data for the source rectangle is to be combined with the color data for the destination rectangle to achieve the final color.
Namespace: Dapplo.Windows.Gdi32.Enums
Assembly: Dapplo.Windows.Gdi32.dll
Syntax
public enum RasterOperations : uint
Fields
Name | Description |
---|---|
Blackness | The destination area is filled by using the color associated with index 0 in the physical palette. (This color is black for the default physical palette.) dest = BLACK |
CaptureBlt | Windows that are layered on top of your window are included in the resulting image. By default, the image contains only your window. Note that this generally cannot be used for printing device contexts. |
DestinationInvert | The destination area is inverted. dest = (NOT dest) |
MergeCopy | The colors of the source area are merged with the colors of the selected brush of the destination device context using the Boolean AND operator. dest = (source AND pattern) |
MergePaint | The colors of the inverted source area are merged with the colors of the destination area by using the Boolean OR operator. dest = (NOT source) OR dest |
NoMirrorBitmap | The bitmap is not mirrored. |
NotSourceCopy | The inverted source area is copied to the destination. dest = (NOT source) |
NotSourceErase | The source and destination colors are combined using the Boolean OR operator, and then resultant color is then inverted. dest = (NOT src) AND (NOT dest) |
PatternCopy | The brush currently selected in the destination device context is copied to the destination bitmap. dest = pattern |
PatternInvert | The colors of the brush currently selected in the destination device context are combined with the colors of the destination are using the Boolean XOR operator. dest = pattern XOR dest |
PatternPaint | The colors of the brush currently selected in the destination device context are combined with the colors of the inverted source area using the Boolean OR operator. The result of this operation is combined with the colors of the destination area using the Boolean OR operator. dest = DPSnoo |
SourceAnd | The colors of the source and destination areas are combined using the Boolean AND operator. dest = source AND dest |
SourceCopy | The source area is copied directly to the destination area. dest = source |
SourceErase | The inverted colors of the destination area are combined with the colors of the source area using the Boolean AND operator. dest = source AND (NOT dest) |
SourceInvert | The colors of the source and destination areas are combined using the Boolean XOR operator. dest = source XOR dest |
SourcePaint | The colors of the source and destination areas are combined using the Boolean OR operator. dest = source OR dest |
Whiteness | The destination area is filled by using the color associated with index 1 in the physical palette. (This color is white for the default physical palette.) dest = WHITE |