Uses of Interface
com.twelvemonkeys.io.enc.Decoder
-
Packages that use Decoder Package Description com.twelvemonkeys.imageio.plugins.bmp com.twelvemonkeys.imageio.plugins.iff com.twelvemonkeys.imageio.plugins.pcx com.twelvemonkeys.imageio.plugins.sgi com.twelvemonkeys.imageio.plugins.tga com.twelvemonkeys.imageio.plugins.tiff com.twelvemonkeys.io.enc Contains customized stream classes, that can read or write compressed data on the fly, along with encoders and decoders for popular stream formats, such as Base64, ZIP (deflate), LZW, PackBits etc.. -
-
Uses of Decoder in com.twelvemonkeys.imageio.plugins.bmp
Classes in com.twelvemonkeys.imageio.plugins.bmp that implement Decoder Modifier and Type Class Description (package private) class
AbstractRLEDecoder
Abstract base class for RLE decoding as specified by in the Windows BMP (aka DIB) file format.(package private) class
RLE4Decoder
Implements 4 bit RLE decoding as specified by in the Windows BMP (aka DIB) file format.(package private) class
RLE8Decoder
Implements 8 bit RLE decoding as specified by in the Windows BMP (aka DIB) file format. -
Uses of Decoder in com.twelvemonkeys.imageio.plugins.iff
Classes in com.twelvemonkeys.imageio.plugins.iff that implement Decoder Modifier and Type Class Description (package private) class
RGB8RLEDecoder
Decoder implementation for Impulse FORM RGB8 RLE compression (type 4). -
Uses of Decoder in com.twelvemonkeys.imageio.plugins.pcx
Classes in com.twelvemonkeys.imageio.plugins.pcx that implement Decoder Modifier and Type Class Description (package private) class
RLEDecoder
-
Uses of Decoder in com.twelvemonkeys.imageio.plugins.sgi
Classes in com.twelvemonkeys.imageio.plugins.sgi that implement Decoder Modifier and Type Class Description (package private) class
RLEDecoder
-
Uses of Decoder in com.twelvemonkeys.imageio.plugins.tga
Classes in com.twelvemonkeys.imageio.plugins.tga that implement Decoder Modifier and Type Class Description (package private) class
RLEDecoder
-
Uses of Decoder in com.twelvemonkeys.imageio.plugins.tiff
Classes in com.twelvemonkeys.imageio.plugins.tiff that implement Decoder Modifier and Type Class Description (package private) class
LZWDecoder
Lempel–Ziv–Welch (LZW) decompression.private static class
LZWDecoder.LZWCompatibilityDecoder
(package private) static class
LZWDecoder.LZWSpecDecoder
Methods in com.twelvemonkeys.imageio.plugins.tiff that return Decoder Modifier and Type Method Description static Decoder
LZWDecoder. create(boolean oldBitReversedStream)
-
Uses of Decoder in com.twelvemonkeys.io.enc
Classes in com.twelvemonkeys.io.enc that implement Decoder Modifier and Type Class Description class
Base64Decoder
Decoder
implementation for standard base64 encoding.class
PackBitsDecoder
Decoder implementation for Apple PackBits run-length encoding.Fields in com.twelvemonkeys.io.enc declared as Decoder Modifier and Type Field Description private Decoder
DecoderStream. decoder
Constructors in com.twelvemonkeys.io.enc with parameters of type Decoder Constructor Description DecoderStream(java.io.InputStream stream, Decoder decoder)
Creates a new decoder stream and chains it to the input stream specified by thestream
argument.DecoderStream(java.io.InputStream stream, Decoder decoder, int bufferSize)
Creates a new decoder stream and chains it to the input stream specified by thestream
argument.
-