CompositingQuality | serializable |
System.Drawing.Drawing2D (system.drawing.dll) | enum |
This enumeration is used with the
System.Drawing.Graphics.CompositingQuality member
to specify how pixels will be rendered. Each step up in rendering
quality causes a corresponding decrease in rendering speed. This is
because the better rendering quality is achieved by examining a
number of pixels around the target pixel and blending values using
one of several sub-pixel interpolation algorithms.
public enum CompositingQuality {
Default = 0,
HighSpeed = 1,
HighQuality = 2,
GammaCorrected = 3,
AssumeLinear = 4,
Invalid = -1
}
Hierarchy
System.Object System.ValueType
System.Enum(System.IComparabl,
System.IFormattable,
System.IConvertible)
CompositingQuality
Returned By
System.Drawing.Graphics.CompositingQuality
Passed To
System.Drawing.Graphics.CompositingQuality
|