November 2002
Intermediate to advanced
848 pages
19h 59m
English
The javax.media.jai.PlanarImage class is an abstract class that also implements the RenderedImage interface, so any concrete PlanarImage subclass has the capability to provide image data in a Raster to objects requesting its data. The PlanarImage class doesn't implement the WritableRenderedImage interface, but one subclass that does have this functionality is the javax.media.jai.TiledImage class. The TiledImage class is the main class for performing image processing directly on pixel data. Another important PlanarImage subclass is the javax.media.jai.RenderedOp class. This class doesn't implement the WritableRenderedImage interface, but does provide methods for data creation through a set of operators.
Thus, a TiledImage object ...