API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt.image. BufferedImageFilter View Source
Author(s)
Since
Version
10 Feb 1997
Serial
Hierarchy
 Object
      ImageFilter
          BufferedImageFilter
Implements
 Cloneable
Subclasses
Description
public class BufferedImageFilter
  The BufferedImageFilter 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.
Constructors
public BufferedImageFilter (BufferedImageOp op)
  Constructs a BufferedImageFilter with the specified single-source/single-destination operator.
Methods
Hide/Show inherited methods
public Object clone () [Inherited From ImageFilter]
Clones this object.
public BufferedImageOp getBufferedImageOp ()
  Returns the BufferedImageOp.
public ImageFilter getFilterInstance (ImageConsumer ic) [Inherited From ImageFilter]
  Returns a unique instance of an ImageFilter object which will actually perform the filtering for the specified ImageConsumer.
public void imageComplete (int status) [Overrides ImageFilter]
  Filters the information provided in the imageComplete method of the ImageConsumer interface.
public void resendTopDownLeftRight (ImageProducer ip) [Inherited From ImageFilter]
  Responds to a request for a TopDownLeftRight (TDLR) ordered resend of the pixel data from an ImageConsumer.
public void setColorModel (ColorModel model) [Overrides ImageFilter]
  Filters the information provided in the setColorModel method of the ImageConsumer interface.
public void setDimensions (int width, int height) [Overrides ImageFilter]
  Filters the information provided in the setDimensions method of the ImageConsumer interface.
public void setHints (int hints) [Inherited From ImageFilter]
  Filters the information provided in the setHints method of the ImageConsumer interface.
public void setPixels (int x, int y, int w, int h, ColorModel model, byte[] pixels, int off, int scansize) [Overrides ImageFilter]
  Filters the information provided in the setPixels method of the ImageConsumer interface which takes an array of bytes.
public void setPixels (int x, int y, int w, int h, ColorModel model, int[] pixels, int off, int scansize) [Overrides ImageFilter]
  Filters the information provided in the setPixels method of the ImageConsumer interface which takes an array of integers.
public void setProperties (Hashtable<Object, Object> props) [Inherited From ImageFilter]
  Passes the properties from the source object along after adding a property indicating the stream of filters it has been run through.
Fields
Hide/Show inherited fields
pack-private BufferedImageOp bufferedImageOp
pack-private byte bytePixels
protected ImageConsumer consumer [Inherited From ImageFilter]
  The consumer of the particular image data stream for which this instance of the ImageFilter is filtering data.
pack-private int height
pack-private int intPixels
pack-private ColorModel model
pack-private int width
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar