public class Filter
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
static int |
AVERAGE |
static int |
NONE |
static int |
PAETH |
static int |
SUB |
static int |
UP |
| Modifier and Type | Method and Description |
|---|---|
static void |
defilter_average(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset) |
static void |
defilter_paeth(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset) |
static void |
defilter_sub(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset) |
static void |
defilter_up(int bytesPerScanLine,
byte[] sample,
int offset) |
static void |
filter_average(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset) |
static void |
filter_paeth(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset) |
static void |
filter_sub(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset) |
static void |
filter_up(int bytesPerScanLine,
byte[] sample,
int offset) |
public static final int NONE
public static final int SUB
public static final int UP
public static final int AVERAGE
public static final int PAETH
public static void defilter_average(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset)
public static void defilter_paeth(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset)
public static void defilter_sub(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset)
public static void defilter_up(int bytesPerScanLine,
byte[] sample,
int offset)
public static void filter_average(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset)
public static void filter_paeth(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset)
public static void filter_sub(int bytesPerPixel,
int bytesPerScanLine,
byte[] sample,
int offset)
public static void filter_up(int bytesPerScanLine,
byte[] sample,
int offset)