PngFilterType enumeration

PngFilterType enumeration

The png filter type.

The PngFilterType type exposes the following members:

Fields

FieldDescription
NONEThe null-filter, means no filtering for image data rows.
SUBThe sub filter, means substractive filtering will be applied to image data.
UPThe up filter, means row-by-row substraction filter will be applied.
AVGThe avg filter, means, that average filter will be applied to image data.
PAETHThe paeth predictor filter.
ADAPTIVEAdaptive filtering, means that saving process will choose most sutable filter for each data row. Best compression, slowest execution time.

See Also