|
JavaTM 2 Platform Standard Edition |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.image.ImageFilter | +--java.awt.image.BufferedImageFilter
This class subclasses an ImageFilter to provide a simple means of using a single-source/single-destination image operator (BufferedImageOp) to filter a BufferedImage in the Image Producer/Consumer/Observer paradigm. Examples of these image operators are: ConvolveOp, AffineTransformOp and LookupOp.
ImageFilter
,
BufferedImage
,
BufferedImageOp
Fields inherited from class java.awt.image.ImageFilter |
consumer |
Constructor Summary | |
BufferedImageFilter(BufferedImageOp op)
Constructs a BufferedImageFilter with the specified single-source/single-destination operator. |
Method Summary | |
BufferedImageOp |
getBufferedImageOp()
Returns the BufferedImageOp. |
void |
imageComplete(int status)
Filters the information provided in the imageComplete method of the ImageConsumer interface. |
void |
setColorModel(ColorModel model)
Filters the information provided in the setColorModel method of the ImageConsumer interface. |
void |
setDimensions(int width,
int height)
Filters the information provided in the setDimensions method of the ImageConsumer interface. |
void |
setPixels(int x,
int y,
int w,
int h,
ColorModel model,
byte[] pixels,
int off,
int scansize)
Filters the information provided in the setPixels method of the ImageConsumer interface which takes an array of bytes. |
void |
setPixels(int x,
int y,
int w,
int h,
ColorModel model,
int[] pixels,
int off,
int scansize)
Filters the information provided in the setPixels method of the ImageConsumer interface which takes an array of integers. |
Methods inherited from class java.awt.image.ImageFilter |
clone,
getFilterInstance,
resendTopDownLeftRight,
setHints,
setProperties |
Methods inherited from class java.lang.Object |
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public BufferedImageFilter(BufferedImageOp op)
Method Detail |
public BufferedImageOp getBufferedImageOp()
public void setDimensions(int width, int height)
Note: This method is intended to be called by the ImageProducer of the Image whose pixels are being filtered. Developers using this class to retrieve pixels from an image should avoid calling this method directly since that operation could result in problems with retrieving the requested pixels.
ImageConsumer.setDimensions(int, int)
public void setColorModel(ColorModel model)
Note: This method is intended to be called by the ImageProducer of the Image whose pixels are being filtered. Developers using this class to retrieve pixels from an image should avoid calling this method directly since that operation could result in problems with retrieving the requested pixels.
ImageConsumer.setColorModel(java.awt.image.ColorModel)
public void setPixels(int x, int y, int w, int h, ColorModel model, byte[] pixels, int off, int scansize)
Note: This method is intended to be called by the ImageProducer of the Image whose pixels are being filtered. Developers using this class to retrieve pixels from an image should avoid calling this method directly since that operation could result in problems with retrieving the requested pixels.
ImageConsumer.setPixels(int, int, int, int, ColorModel, byte[],
int, int)
public void setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, int scansize)
Note: This method is intended to be called by the ImageProducer of the Image whose pixels are being filtered. Developers using this class to retrieve pixels from an image should avoid calling this method directly since that operation could result in problems with retrieving the requested pixels.
ImageConsumer.setPixels(int, int, int, int, ColorModel, int[],
int, int)
public void imageComplete(int status)
Note: This method is intended to be called by the ImageProducer of the Image whose pixels are being filtered. Developers using this class to retrieve pixels from an image should avoid calling this method directly since that operation could result in problems with retrieving the requested pixels.
ImageConsumer.imageComplete(int)
|
JavaTM 2 Platform Standard Edition |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |