public final class PngFilterType
extends com.aspose.ms.System.Enum
The png filter type.
Modifier and Type | Field and Description |
---|---|
static int |
Adaptive
Adaptive filtering, means that saving process will choose most sutable filter for each data row.
|
static int |
Avg
The avg filter, means, that average filter will be applied to image data.
|
static int |
None
The null-filter, means no filtering for image data rows.
|
static int |
Paeth
The paeth predictor filter.
|
static int |
Sub
The sub filter, means substractive filtering will be applied to image data.
|
static int |
Up
The up filter, means row-by-row substraction filter will be applied.
|
public static final int None
The null-filter, means no filtering for image data rows.
public static final int Sub
The sub filter, means substractive filtering will be applied to image data.
public static final int Up
The up filter, means row-by-row substraction filter will be applied.
public static final int Avg
The avg filter, means, that average filter will be applied to image data.
public static final int Paeth
The paeth predictor filter.
public static final int Adaptive
Adaptive filtering, means that saving process will choose most sutable filter for each data row. Best compression, slowest execution time.