Uses of Interface
javax.imageio.stream.ImageInputStream
Package | Description |
---|---|
javax.imageio |
The main package of the Java Image I/O API.
|
javax.imageio.spi |
A package of the Java Image I/O API containing the plug-in interfaces for
readers, writers, transcoders, and streams, and a runtime registry.
|
javax.imageio.stream |
A package of the Java Image I/O API dealing with low-level I/O from files and
streams.
|
-
Uses of ImageInputStream in javax.imageio
Methods in javax.imageio that return ImageInputStream Modifier and Type Method Description static ImageInputStream
ImageIO. createImageInputStream(Object input)
Returns anImageInputStream
that will take its input from the givenObject
.Methods in javax.imageio with parameters of type ImageInputStream Modifier and Type Method Description static BufferedImage
ImageIO. read(ImageInputStream stream)
Returns aBufferedImage
as the result of decoding a suppliedImageInputStream
with anImageReader
chosen automatically from among those currently registered. -
Uses of ImageInputStream in javax.imageio.spi
Methods in javax.imageio.spi that return ImageInputStream Modifier and Type Method Description ImageInputStream
ImageInputStreamSpi. createInputStreamInstance(Object input)
Returns an instance of theImageInputStream
implementation associated with this service provider.abstract ImageInputStream
ImageInputStreamSpi. createInputStreamInstance(Object input, boolean useCache, File cacheDir)
Returns an instance of theImageInputStream
implementation associated with this service provider. -
Uses of ImageInputStream in javax.imageio.stream
Subinterfaces of ImageInputStream in javax.imageio.stream Modifier and Type Interface Description interface
ImageOutputStream
A seekable output stream interface for use byImageWriter
s.Classes in javax.imageio.stream that implement ImageInputStream Modifier and Type Class Description class
FileCacheImageInputStream
An implementation ofImageInputStream
that gets its input from a regularInputStream
.class
FileCacheImageOutputStream
An implementation ofImageOutputStream
that writes its output to a regularOutputStream
.class
FileImageInputStream
An implementation ofImageInputStream
that gets its input from aFile
orRandomAccessFile
.class
FileImageOutputStream
An implementation ofImageOutputStream
that writes its output directly to aFile
orRandomAccessFile
.class
ImageInputStreamImpl
An abstract class implementing theImageInputStream
interface.class
ImageOutputStreamImpl
An abstract class implementing theImageOutputStream
interface.class
MemoryCacheImageInputStream
An implementation ofImageInputStream
that gets its input from a regularInputStream
.class
MemoryCacheImageOutputStream
An implementation ofImageOutputStream
that writes its output to a regularOutputStream
.