|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
ImageJ bit blitting classes must implement this interface.
Field Summary | |
static int |
ADD
dst=dst+src |
static int |
AND
dst=dst AND src |
static int |
AVERAGE
dst=(dst+src)/2 |
static int |
COPY
dst=src |
static int |
COPY_INVERTED
dst=255-src (8-bits and RGB) |
static int |
COPY_TRANSPARENT
Copies with white pixels transparent. |
static int |
DIFFERENCE
dst=abs(dst-src) |
static int |
DIVIDE
dst=dst/src |
static int |
MAX
dst=max(dst,src) |
static int |
MIN
dst=min(dst,src) |
static int |
MULTIPLY
dst=src*src |
static int |
OR
dst=dst OR src |
static int |
SUBTRACT
dst=dst-src |
static int |
XOR
dst=dst XOR src |
Method Summary | |
void |
copyBits(ImageProcessor src,
int x,
int y,
int mode)
Copies the image in 'src' to (x,y) using the specified mode. |
void |
setTransparentColor(java.awt.Color c)
Sets the transparent color used in the COPY_TRANSPARENT mode (default is Color.white). |
Field Detail |
public static final int COPY
public static final int COPY_INVERTED
public static final int COPY_TRANSPARENT
public static final int ADD
public static final int SUBTRACT
public static final int MULTIPLY
public static final int DIVIDE
public static final int AVERAGE
public static final int DIFFERENCE
public static final int AND
public static final int OR
public static final int XOR
public static final int MIN
public static final int MAX
Method Detail |
public void setTransparentColor(java.awt.Color c)
public void copyBits(ImageProcessor src, int x, int y, int mode)
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |