Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/process/Blitter.html
Дата изменения: Thu Dec 2 23:03:11 2010 Дата индексирования: Mon Oct 1 21:58:53 2012 Кодировка: Поисковые слова: comet |
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Blitter
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 |
COPY_ZERO_TRANSPARENT
Copies with zero 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 |
---|
static final int COPY
static final int COPY_INVERTED
static final int COPY_TRANSPARENT
static final int ADD
static final int SUBTRACT
static final int MULTIPLY
static final int DIVIDE
static final int AVERAGE
static final int DIFFERENCE
static final int AND
static final int OR
static final int XOR
static final int MIN
static final int MAX
static final int COPY_ZERO_TRANSPARENT
Method Detail |
---|
void setTransparentColor(java.awt.Color c)
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 |