Uses of Class
org.apache.xmlgraphics.image.codec.util.SeekableStream
-
Packages that use SeekableStream Package Description org.apache.xmlgraphics.image.codec.tiff Contains a TIFF image codec.org.apache.xmlgraphics.image.codec.util Contains utility classes for image codecs.org.apache.xmlgraphics.image.loader.util Contains utilities and helper classes useful in conjunction with the image package. -
-
Uses of SeekableStream in org.apache.xmlgraphics.image.codec.tiff
Methods in org.apache.xmlgraphics.image.codec.tiff with parameters of type SeekableStream Modifier and Type Method Description static int
TIFFDirectory. getNumDirectories(SeekableStream stream)
Returns the number of image directories (subimages) stored in a given TIFF file, represented by aSeekableStream
.Constructors in org.apache.xmlgraphics.image.codec.tiff with parameters of type SeekableStream Constructor Description TIFFDirectory(SeekableStream stream, int directory)
Constructs a TIFFDirectory from a SeekableStream.TIFFDirectory(SeekableStream stream, long ifdOffset, int directory)
Constructs a TIFFDirectory by reading a SeekableStream.TIFFImage(SeekableStream stream, TIFFDecodeParam param, int directory)
Constructs a TIFFImage that acquires its data from a given SeekableStream and reads from a particular IFD of the stream.TIFFImageDecoder(SeekableStream input, TIFFDecodeParam param)
-
Uses of SeekableStream in org.apache.xmlgraphics.image.codec.util
Subclasses of SeekableStream in org.apache.xmlgraphics.image.codec.util Modifier and Type Class Description class
FileCacheSeekableStream
A subclass ofSeekableStream
that may be used to wrap a regularInputStream
.class
ForwardSeekableStream
A subclass ofSeekableStream
that may be used to wrap a regularInputStream
efficiently.class
ImageInputStreamSeekableStreamAdapter
A subclass ofSeekableStream
that may be used to wrap a regularImageInputStream
.class
MemoryCacheSeekableStream
A subclass ofSeekableStream
that may be used to wrap a regularInputStream
.Fields in org.apache.xmlgraphics.image.codec.util declared as SeekableStream Modifier and Type Field Description protected SeekableStream
ImageDecoderImpl. input
TheSeekableStream
associcted with thisImageEncoder
.Methods in org.apache.xmlgraphics.image.codec.util that return SeekableStream Modifier and Type Method Description SeekableStream
ImageDecoder. getInputStream()
Returns the SeekableStream associated with this ImageDecoder.SeekableStream
ImageDecoderImpl. getInputStream()
Returns theSeekableStream
associated with thisImageDecoder
.static SeekableStream
SeekableStream. wrapInputStream(java.io.InputStream is, boolean canSeekBackwards)
Returns aSeekableStream
that will read from a givenInputStream
, optionally including support for seeking backwards.Constructors in org.apache.xmlgraphics.image.codec.util with parameters of type SeekableStream Constructor Description ImageDecoderImpl(SeekableStream input, ImageDecodeParam param)
Constructs anImageDecoderImpl
with a givenSeekableStream
andImageDecodeParam
instance. -
Uses of SeekableStream in org.apache.xmlgraphics.image.loader.util
Subclasses of SeekableStream in org.apache.xmlgraphics.image.loader.util Modifier and Type Class Description class
SeekableStreamAdapter
Adapter which provides a SeekableStream interface over an ImageInputStream.
-