Java java.awt.image AffineTransformOp fields, constructors, methods, implement or subclass

Example usage for Java java.awt.image AffineTransformOp fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.awt.image AffineTransformOp.

The text is from its open source code.

Field

intTYPE_NEAREST_NEIGHBOR
Nearest-neighbor interpolation type.
intTYPE_BILINEAR
Bilinear interpolation type.
intTYPE_BICUBIC
Bicubic interpolation type.

Constructor

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.

Method

BufferedImagecreateCompatibleDestImage(BufferedImage src, ColorModel destCM)
Creates a zeroed destination image with the correct size and number of bands.
WritableRastercreateCompatibleDestRaster(Raster src)
Creates a zeroed destination Raster with the correct size and number of bands.
BufferedImagefilter(BufferedImage src, BufferedImage dst)
Transforms the source BufferedImage and stores the results in the destination BufferedImage .
WritableRasterfilter(Raster src, WritableRaster dst)
Transforms the source Raster and stores the results in the destination Raster .