Example usage for Java javax.imageio IIOImage fields, constructors, methods, implement or subclass
The text is from its open source code.
IIOImage(RenderedImage image, List extends BufferedImage> thumbnails, IIOMetadata metadata) Constructs an IIOImage containing a RenderedImage , and thumbnails and metadata associated with it. | |
IIOImage(Raster raster, List extends BufferedImage> thumbnails, IIOMetadata metadata) Constructs an IIOImage containing a Raster , and thumbnails and metadata associated with it. |
IIOMetadata | getMetadata() Returns a reference to the current IIOMetadata object, or null is none is set. |
Raster | getRaster() Returns the currently set Raster , or null if only a RenderedImage is available. |
RenderedImage | getRenderedImage() Returns the currently set RenderedImage , or null if only a Raster is available. |
void | setMetadata(IIOMetadata metadata) Sets the IIOMetadata to a new object, or null . |