Enum PngFilterType

PngFilterType enumeration

The png filter type.

public enum PngFilterType

Values

NameValueDescription
None0The null-filter, means no filtering for image data rows.
Sub1The sub filter, means substractive filtering will be applied to image data.
Up2The up filter, means row-by-row substraction filter will be applied.
Avg3The avg filter, means, that average filter will be applied to image data.
Paeth4The paeth predictor filter.
Adaptive5Adaptive filtering, means that saving process will choose most sutable filter for each data row. Best compression, slowest execution time.

See Also