Methods Summary |
---|
public java.awt.image.BufferedImage | createCompatibleDestImage(java.awt.image.BufferedImage src, java.awt.image.ColorModel destCM)Creates a zeroed destination image with the correct size and number of
bands.
An IllegalArgumentException may be thrown if the source
image is incompatible with the types of images allowed
by the class implementing this filter.
|
public java.awt.image.BufferedImage | filter(java.awt.image.BufferedImage src, java.awt.image.BufferedImage dest)Performs a single-input/single-output operation on a
BufferedImage .
If the color models for the two images do not match, a color
conversion into the destination color model is performed.
If the destination image is null,
a BufferedImage with an appropriate ColorModel
is created.
An IllegalArgumentException may be thrown if the source
and/or destination image is incompatible with the types of images $
allowed by the class implementing this filter.
|
public java.awt.geom.Rectangle2D | getBounds2D(java.awt.image.BufferedImage src)Returns the bounding box of the filtered destination image.
An IllegalArgumentException may be thrown if the source
image is incompatible with the types of images allowed
by the class implementing this filter.
|
public java.awt.geom.Point2D | getPoint2D(java.awt.geom.Point2D srcPt, java.awt.geom.Point2D dstPt)Returns the location of the corresponding destination point given a
point in the source image. If dstPt is specified, it
is used to hold the return value.
|
public java.awt.RenderingHints | getRenderingHints()Returns the rendering hints for this operation.
|