view
Interface ImageOperation
- All Known Implementing Classes:
- JCamera, JFitsComponent, JFitsFrame
public interface ImageOperation
This interface describes object that perform an operation on an image that
returns an image of the same size. Despite its name it only works on
BufferedImages.
prepareToDisplay
BufferedImage prepareToDisplay(BufferedImage src)
- Takes a source buffered image, performs some operation on it and
returns the new buffered image. The source image can be modified.
The main purpose of this interface is to allow some rendering
operations to take place just before the image is displayed.