Example usage for Java java.awt.image AffineTransformOp fields, constructors, methods, implement or subclass
The text is from its open source code.
int | TYPE_NEAREST_NEIGHBOR Nearest-neighbor interpolation type. |
int | TYPE_BILINEAR Bilinear interpolation type. |
int | TYPE_BICUBIC Bicubic interpolation type. |
AffineTransformOp(AffineTransform xform, RenderingHints hints) Constructs an AffineTransformOp given an affine transform. | |
AffineTransformOp(AffineTransform xform, int interpolationType) Constructs an AffineTransformOp given an affine transform and the interpolation type. |
BufferedImage | createCompatibleDestImage(BufferedImage src, ColorModel destCM) Creates a zeroed destination image with the correct size and number of bands. |
WritableRaster | createCompatibleDestRaster(Raster src) Creates a zeroed destination Raster with the correct size and number of bands. |
BufferedImage | filter(BufferedImage src, BufferedImage dst) Transforms the source BufferedImage and stores the results in the destination BufferedImage . |
WritableRaster | filter(Raster src, WritableRaster dst) Transforms the source Raster and stores the results in the destination Raster . |