BufferedImage
objects.
It is implemented by AffineTransformOp
,
ConvolveOp
, ColorConvertOp
, RescaleOp
,
and LookupOp
. These objects can be passed into
a BufferedImageFilter
to operate on a
BufferedImage
in the
ImageProducer-ImageFilter-ImageConsumer paradigm.
Classes that implement this interface must specify whether or not they allow in-place filtering-- filter operations where the source object is equal to the destination object.
This interface cannot be used to describe more sophisticated operations such as those that take multiple sources. Note that this restriction also means that the values of the destination pixels prior to the operation are not used as input to the filter operation.
IllegalArgumentException
may be thrown if the source
image is incompatible with the types of images allowed
by the class implementing this filter.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.
IllegalArgumentException
may be thrown if the source
image is incompatible with the types of images allowed
by the class implementing this filter.dstPt
is specified, it
is used to hold the return value.