Interface ImageFilter
-
- All Known Implementing Classes:
Canvas,Caption,Colorize,Pipeline,Rotation.Rotator,SwapDimensions,Transparency,Watermark
public interface ImageFilterThis interface is to be implemented by classes which performs an image filtering operation on aBufferedImage.The general contract for classes implementing
ImageFilteris that they should not change the contents of theBufferedImagewhich is given as the argument for theapply(BufferedImage)method.The filter should make a copy of the given
BufferedImage, and perform the filtering operations on the copy, then return the copy.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.image.BufferedImageapply(java.awt.image.BufferedImage img)Applies a image filtering operation on an image.
-