Enum PngFilter
Filter to apply for compression optimization.
Namespace: Gorgon.Graphics.Imaging.Codecs
Assembly: Gorgon.Graphics.Imaging.dll
Syntax
public enum PngFilter
Fields
Name | Description |
---|---|
Adaptive | Adaptive filtering. The system will choose the best filter based on a per-scanline basis. |
Average | Average filtering. |
DontCare | The system will chose the best filter based on the image data. |
None | No filtering. |
Paeth | Paeth filtering. |
Sub | Sub filtering. |
Up | Up filtering. |