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.
Creates a destination image with the specified BufferedImage and
ColorModel; this destination image is empty and has the correct size and
number of bands.
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.