Enum ImageFilter
Filter to be applied to an image that's been stretched or shrunk.
Namespace: Gorgon.Graphics.Imaging
Assembly: Gorgon.Graphics.Imaging.dll
Syntax
public enum ImageFilter
Fields
Name | Description |
---|---|
Cubic | Destination pixel values are computed as a weighted average of the nearest sixteen pixels in a 4x4 grid. |
Fant | Destination pixel values are computed as a weighted average of the all the pixels that map to the new pixel. |
Linear | The output pixel values are computed as a weighted average of the nearest four pixels in a 2x2 grid. |
Point | The output pixel is assigned the value of the pixel that the point falls within. No other pixels are considered. |