Java javax.imageio IIOImage fields, constructors, methods, implement or subclass

Example usage for Java javax.imageio IIOImage fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.imageio IIOImage.

The text is from its open source code.

Constructor

IIOImage(RenderedImage image, List thumbnails, IIOMetadata metadata)
Constructs an IIOImage containing a RenderedImage , and thumbnails and metadata associated with it.
IIOImage(Raster raster, List thumbnails, IIOMetadata metadata)
Constructs an IIOImage containing a Raster , and thumbnails and metadata associated with it.

Method

IIOMetadatagetMetadata()
Returns a reference to the current IIOMetadata object, or null is none is set.
RastergetRaster()
Returns the currently set Raster , or null if only a RenderedImage is available.
RenderedImagegetRenderedImage()
Returns the currently set RenderedImage , or null if only a Raster is available.
voidsetMetadata(IIOMetadata metadata)
Sets the IIOMetadata to a new object, or null .