public final class PngFilterType extends Object
Represents PNG image filter type.
Modifier and Type | Field and Description |
---|---|
static int |
Adaptive
Adaptive filtering, means that saving process will choose most suitable 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 path predictor filter.
|
static int |
Sub
The sub filter, means subtractive filtering will be applied to image data.
|
static int |
Up
The up filter, means row-by-row subtraction filter will be applied.
|
public static final int Adaptive
Adaptive filtering, means that saving process will choose most suitable filter for each data row. Best compression, slowest execution time.
public static final int Avg
The avg filter, means, that average filter will be applied to image data.
public static final int None
The null-filter, means no filtering for image data rows.
public static final int Paeth
The path predictor filter.
public static final int Sub
The sub filter, means subtractive filtering will be applied to image data.
public static final int Up
The up filter, means row-by-row subtraction filter will be applied.