FileDocCategorySizeDatePackage
BufferedImageOp.javaAPI DocAndroid 1.5 API3171Wed May 06 22:41:54 BST 2009java.awt.image

BufferedImageOp

public interface BufferedImageOp
The BufferedImageOp interface provides methods for performing transformations from source data to destination data for BufferedImage objects. An object implementing this interface can be passed into a BufferedImageFilter to operate on a BufferedImage.
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public java.awt.image.BufferedImagecreateCompatibleDestImage(java.awt.image.BufferedImage src, java.awt.image.ColorModel destCM)
Creates a destination image with the specified BufferedImage and ColorModel; this destination image is empty and has the correct size and number of bands.

param
src the source BufferedImage.
param
destCM the destination ColorModel.
return
the BufferedImage.

public java.awt.image.BufferedImagefilter(java.awt.image.BufferedImage src, java.awt.image.BufferedImage dest)
Performs a filter operation on the source BufferedImage and stores the resulting BufferedImage to the destination BufferedImage. If the destination BufferedImage is null, a BufferedImage with an appropriate ColorModel is created.

param
src the source BufferedImage.
param
dest the destination BufferedImage, where the result is stored.
return
the filtered BufferedImage.

public java.awt.geom.Rectangle2DgetBounds2D(java.awt.image.BufferedImage src)
Gets the bounds of filtered image.

param
src the source BufferedImage to be filtered.
return
the rectangle bounds of filtered image.

public java.awt.geom.Point2DgetPoint2D(java.awt.geom.Point2D srcPt, java.awt.geom.Point2D dstPt)
Gets the point of the destination image which corresponds to the specified point in the source image.

param
srcPt the point of the source image.
param
dstPt the point where the result will be stored.
return
the destination point.

public java.awt.RenderingHintsgetRenderingHints()
Gets the RenderingHints of the BufferedImageOp.

return
the RenderingHints of the BufferedImageOp.