Package org.libtiff.jai.codecimpl
Class XTIFFImage
- java.lang.Object
-
- com.sun.media.jai.codecimpl.SimpleRenderedImage
-
- org.libtiff.jai.codecimpl.XTIFFImage
-
- All Implemented Interfaces:
RenderedImage
public class XTIFFImage extends com.sun.media.jai.codecimpl.SimpleRenderedImage
-
-
Constructor Summary
Constructors Constructor Description XTIFFImage(com.sun.media.jai.codec.SeekableStream stream, com.sun.media.jai.codec.TIFFDecodeParam param, int directory)
Constructs a XTIFFImage that acquires its data from a given SeekableStream and reads from a particular IFD of the stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XTIFFDirectory
getPrivateIFD(long offset)
Reads a private IFD from a given offset in the stream.Raster
getTile(int tileX, int tileY)
Returns tile (tileX, tileY) as a Raster.protected void
setupImageParameters()
This method gets the image parameters from fieldsprotected void
setupSamplesAndColor()
This method constructs the sampleModel, colorModel, determines the image_type and the bands parameter.-
Methods inherited from class com.sun.media.jai.codecimpl.SimpleRenderedImage
copyData, getBounds, getColorModel, getData, getData, getHeight, getMaxTileX, getMaxTileY, getMaxX, getMaxY, getMinTileX, getMinTileY, getMinX, getMinY, getNumXTiles, getNumYTiles, getProperty, getPropertyNames, getPropertyNames, getSampleModel, getSources, getTileGridXOffset, getTileGridYOffset, getTileHeight, getTileWidth, getWidth, tileXToX, tileXToX, tileYToY, tileYToY, XToTileX, XToTileX, YToTileY, YToTileY
-
-
-
-
Constructor Detail
-
XTIFFImage
public XTIFFImage(com.sun.media.jai.codec.SeekableStream stream, com.sun.media.jai.codec.TIFFDecodeParam param, int directory) throws IOException
Constructs a XTIFFImage that acquires its data from a given SeekableStream and reads from a particular IFD of the stream. The index of the first IFD is 0.- Parameters:
stream
- the SeekableStream to read from.param
- an instance of TIFFDecodeParam, or null.directory
- the index of the IFD to read from.- Throws:
IOException
-
-
Method Detail
-
setupImageParameters
protected void setupImageParameters()
This method gets the image parameters from fields
-
setupSamplesAndColor
protected void setupSamplesAndColor()
This method constructs the sampleModel, colorModel, determines the image_type and the bands parameter.
-
getPrivateIFD
public XTIFFDirectory getPrivateIFD(long offset) throws IOException
Reads a private IFD from a given offset in the stream. This method may be used to obtain IFDs that are referenced only by private tag values.- Throws:
IOException
-
getTile
public Raster getTile(int tileX, int tileY)
Returns tile (tileX, tileY) as a Raster.
-
-