Interface ImageOutputStream
- All Superinterfaces:
AutoCloseable, Closeable, DataInput, DataOutput, ImageInputStream
- All Known Implementing Classes:
FileCacheImageOutputStream, FileImageOutputStream, ImageOutputStreamImpl, MemoryCacheImageOutputStream
ImageWriters. Various output destinations, such as
OutputStreams and Files, as well as
future fast I/O destinations may be "wrapped" by a suitable
implementation of this interface for use by the Image I/O API.
Unlike a standard OutputStream, ImageOutputStream
extends its counterpart, ImageInputStream. Thus it is
possible to read from the stream as it is being written. The same
seek and flush positions apply to both reading and writing, although
the semantics for dealing with a non-zero bit offset before a byte-aligned
write are necessarily different from the semantics for dealing with
a non-zero bit offset before a byte-aligned read. When reading bytes,
any bit offset is set to 0 before the read; when writing bytes, a
non-zero bit offset causes the remaining bits in the byte to be written
as 0s. The byte-aligned write then starts at the next byte position.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidflushBefore(long pos) Flushes all data prior to the given position to the underlying destination, such as anOutputStreamorFile.voidwrite(byte[] b) Writes a sequence of bytes to the stream at the current position.voidwrite(byte[] b, int off, int len) Writes a sequence of bytes to the stream at the current position.voidwrite(int b) Writes a single byte to the stream at the current position.voidwriteBit(int bit) Writes a single bit, given by the least significant bit of the argument, to the stream at the current bit offset within the current byte position.voidwriteBits(long bits, int numBits) Writes a sequence of bits, given by thenumBitsleast significant bits of thebitsargument in left-to-right order, to the stream at the current bit offset within the current byte position.voidwriteBoolean(boolean v) Writes abooleanvalue to the stream.voidwriteByte(int v) Writes the 8 low-order bits ofvto the stream.voidwriteBytes(String s) Writes a string to the output stream.voidwriteChar(int v) This method is a synonym forwriteShort.voidwriteChars(char[] c, int off, int len) Writes a sequence of chars to the stream at the current position.voidwriteChars(String s) Writes a string to the output stream.voidwriteDouble(double v) Writes adoublevalue, which is comprised of four bytes, to the output stream.voidwriteDoubles(double[] d, int off, int len) Writes a sequence of doubles to the stream at the current position.voidwriteFloat(float v) Writes afloatvalue, which is comprised of four bytes, to the output stream.voidwriteFloats(float[] f, int off, int len) Writes a sequence of floats to the stream at the current position.voidwriteInt(int v) Writes the 32 bits ofvto the stream.voidwriteInts(int[] i, int off, int len) Writes a sequence of ints to the stream at the current position.voidwriteLong(long v) Writes the 64 bits ofvto the stream.voidwriteLongs(long[] l, int off, int len) Writes a sequence of longs to the stream at the current position.voidwriteShort(int v) Writes the 16 low-order bits ofvto the stream.voidwriteShorts(short[] s, int off, int len) Writes a sequence of shorts to the stream at the current position.voidWrites two bytes of length information to the output stream in network byte order, followed by the modified UTF-8 representation of every character in the strings.Methods declared in interface ImageInputStream
close, flush, getBitOffset, getByteOrder, getFlushedPosition, getStreamPosition, isCached, isCachedFile, isCachedMemory, length, mark, read, read, read, readBit, readBits, readBoolean, readByte, readBytes, readChar, readDouble, readFloat, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readFully, readInt, readLine, readLong, readShort, readUnsignedByte, readUnsignedInt, readUnsignedShort, readUTF, reset, seek, setBitOffset, setByteOrder, skipBytes, skipBytesModifier and TypeMethodDescriptionvoidclose()Closes the stream.voidflush()Discards the initial position of the stream prior to the current stream position.intReturns the current bit offset, as an integer between 0 and 7, inclusive.Returns the byte order with which data values will be read from this stream as an instance of thejava.nio.ByteOrderenumeration.longReturns the earliest position in the stream to which seeking may be performed.longReturns the current byte position of the stream.booleanisCached()Returnstrueif thisImageInputStreamcaches data itself in order to allow seeking backwards.booleanReturnstrueif thisImageInputStreamcaches data itself in order to allow seeking backwards, and the cache is kept in a temporary file.booleanReturnstrueif thisImageInputStreamcaches data itself in order to allow seeking backwards, and the cache is kept in main memory.longlength()Returns the total length of the stream, if known.voidmark()Marks a position in the stream to be returned to by a subsequent call toreset.intread()Reads a single byte from the stream and returns it as an integer between 0 and 255.intread(byte[] b) Reads up tob.lengthbytes from the stream, and stores them intobstarting at index 0.intread(byte[] b, int off, int len) Reads up tolenbytes from the stream, and stores them intobstarting at indexoff.intreadBit()Reads a single bit from the stream and returns it as anintwith the value0or1.longreadBits(int numBits) Reads a bitstring from the stream and returns it as along, with the first bit read becoming the most significant bit of the output.booleanReads a byte from the stream and returns abooleanvalue oftrueif it is nonzero,falseif it is zero.bytereadByte()Reads a byte from the stream and returns it as abytevalue.voidreadBytes(IIOByteBuffer buf, int len) Reads up tolenbytes from the stream, and modifies the suppliedIIOByteBufferto indicate the byte array, offset, and length where the data may be found.charreadChar()Equivalent toreadUnsignedShort, except that the result is returned using thechardatatype.doubleReads 8 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as adouble.floatReads 4 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as afloat.voidreadFully(byte[] b) Readsb.lengthbytes from the stream, and stores them intobstarting at index0.voidreadFully(byte[] b, int off, int len) Readslenbytes from the stream, and stores them intobstarting at indexoff.voidreadFully(char[] c, int off, int len) Readslenchars (unsigned 16-bit integers) from the stream according to the current byte order, and stores them intocstarting at indexoff.voidreadFully(double[] d, int off, int len) Readslendoubles (64-bit IEEE double-precision floats) from the stream according to the current byte order, and stores them intodstarting at indexoff.voidreadFully(float[] f, int off, int len) Readslenfloats (32-bit IEEE single-precision floats) from the stream according to the current byte order, and stores them intofstarting at indexoff.voidreadFully(int[] i, int off, int len) Readslenints (signed 32-bit integers) from the stream according to the current byte order, and stores them intoistarting at indexoff.voidreadFully(long[] l, int off, int len) Readslenlongs (signed 64-bit integers) from the stream according to the current byte order, and stores them intolstarting at indexoff.voidreadFully(short[] s, int off, int len) Readslenshorts (signed 16-bit integers) from the stream according to the current byte order, and stores them intosstarting at indexoff.intreadInt()Reads 4 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as anint.readLine()Reads the next line of text from the input stream.longreadLong()Reads 8 bytes from the stream, and (conceptually) concatenates them according to the current byte order and returns the result as along.shortReads two bytes from the stream, and (conceptually) concatenates them according to the current byte order, and returns the result as ashortvalue.intReads a byte from the stream, and (conceptually) converts it to an int, masks it with0xffin order to strip off any sign-extension bits, and returns it as abytevalue.longReads 4 bytes from the stream, and (conceptually) concatenates them according to the current byte order, converts the result to a long, masks it with0xffffffffLin order to strip off any sign-extension bits, and returns the result as an unsignedlongvalue.intReads two bytes from the stream, and (conceptually) concatenates them according to the current byte order, converts the resulting value to anint, masks it with0xffffin order to strip off any sign-extension buts, and returns the result as an unsignedintvalue.readUTF()Reads in a string that has been encoded using a modified UTF-8 format.voidreset()Returns the stream pointer to its previous position, including the bit offset, at the time of the most recent unmatched call tomark.voidseek(long pos) Sets the current stream position to the desired location.voidsetBitOffset(int bitOffset) Sets the bit offset to an integer between 0 and 7, inclusive.voidsetByteOrder(ByteOrder byteOrder) Sets the desired byte order for future reads of data values from this stream.intskipBytes(int n) Moves the stream position forward by a given number of bytes.longskipBytes(long n) Moves the stream position forward by a given number of bytes.
-
Method Details
-
write
Writes a single byte to the stream at the current position. The 24 high-order bits ofbare ignored.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write. Implementers can use the
flushBitsmethod ofImageOutputStreamImplto guarantee this.- Specified by:
writein interfaceDataOutput- Parameters:
b- anintwhose lower 8 bits are to be written.- Throws:
IOException- if an I/O error occurs.
-
write
Writes a sequence of bytes to the stream at the current position. Ifb.lengthis 0, nothing is written. The byteb[0]is written first, then the byteb[1], and so on.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writein interfaceDataOutput- Parameters:
b- an array ofbytes to be written.- Throws:
NullPointerException- ifbisnull.IOException- if an I/O error occurs.
-
write
Writes a sequence of bytes to the stream at the current position. Iflenis 0, nothing is written. The byteb[off]is written first, then the byteb[off + 1], and so on.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write. Implementers can use the
flushBitsmethod ofImageOutputStreamImplto guarantee this.- Specified by:
writein interfaceDataOutput- Parameters:
b- an array ofbytes to be written.off- the start offset in the data.len- the number ofbytes to write.- Throws:
IndexOutOfBoundsException- ifoffis negative,lenis negative, oroff + lenis greater thanb.length.NullPointerException- ifbisnull.IOException- if an I/O error occurs.
-
writeBoolean
Writes abooleanvalue to the stream. Ifvis true, the value(byte)1is written; ifvis false, the value(byte)0is written.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeBooleanin interfaceDataOutput- Parameters:
v- thebooleanto be written.- Throws:
IOException- if an I/O error occurs.
-
writeByte
Writes the 8 low-order bits ofvto the stream. The 24 high-order bits ofvare ignored. (This means thatwriteBytedoes exactly the same thing aswritefor an integer argument.)If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeBytein interfaceDataOutput- Parameters:
v- anintcontaining the byte value to be written.- Throws:
IOException- if an I/O error occurs.
-
writeShort
Writes the 16 low-order bits ofvto the stream. The 16 high-order bits ofvare ignored. If the stream uses network byte order, the bytes written, in order, will be:(byte)((v >> 8) & 0xff) (byte)(v & 0xff)
Otherwise, the bytes written will be:(byte)(v & 0xff) (byte)((v >> 8) & 0xff)
If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeShortin interfaceDataOutput- Parameters:
v- anintcontaining the short value to be written.- Throws:
IOException- if an I/O error occurs.
-
writeChar
This method is a synonym forwriteShort.- Specified by:
writeCharin interfaceDataOutput- Parameters:
v- anintcontaining the char (unsigned short) value to be written.- Throws:
IOException- if an I/O error occurs.- See Also:
-
writeInt
Writes the 32 bits ofvto the stream. If the stream uses network byte order, the bytes written, in order, will be:(byte)((v >> 24) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 8) & 0xff) (byte)(v & 0xff)
Otherwise, the bytes written will be:(byte)(v & 0xff) (byte)((v >> 8) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 24) & 0xff)
If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeIntin interfaceDataOutput- Parameters:
v- anintcontaining the value to be written.- Throws:
IOException- if an I/O error occurs.
-
writeLong
Writes the 64 bits ofvto the stream. If the stream uses network byte order, the bytes written, in order, will be:(byte)((v >> 56) & 0xff) (byte)((v >> 48) & 0xff) (byte)((v >> 40) & 0xff) (byte)((v >> 32) & 0xff) (byte)((v >> 24) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 8) & 0xff) (byte)(v & 0xff)
Otherwise, the bytes written will be:(byte)(v & 0xff) (byte)((v >> 8) & 0xff) (byte)((v >> 16) & 0xff) (byte)((v >> 24) & 0xff) (byte)((v >> 32) & 0xff) (byte)((v >> 40) & 0xff) (byte)((v >> 48) & 0xff) (byte)((v >> 56) & 0xff)
If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeLongin interfaceDataOutput- Parameters:
v- alongcontaining the value to be written.- Throws:
IOException- if an I/O error occurs.
-
writeFloat
Writes afloatvalue, which is comprised of four bytes, to the output stream. It does this as if it first converts thisfloatvalue to anintin exactly the manner of theFloat.floatToIntBitsmethod and then writes the int value in exactly the manner of thewriteIntmethod.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeFloatin interfaceDataOutput- Parameters:
v- afloatcontaining the value to be written.- Throws:
IOException- if an I/O error occurs.
-
writeDouble
Writes adoublevalue, which is comprised of four bytes, to the output stream. It does this as if it first converts thisdoublevalue to alongin exactly the manner of theDouble.doubleToLongBitsmethod and then writes the long value in exactly the manner of thewriteLongmethod.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeDoublein interfaceDataOutput- Parameters:
v- adoublecontaining the value to be written.- Throws:
IOException- if an I/O error occurs.
-
writeBytes
Writes a string to the output stream. For every character in the strings, taken in order, one byte is written to the output stream. Ifsisnull, aNullPointerExceptionis thrown.If
s.lengthis zero, then no bytes are written. Otherwise, the characters[0]is written first, thens[1], and so on; the last character written iss[s.length-1]. For each character, one byte is written, the low-order byte, in exactly the manner of thewriteBytemethod. The high-order eight bits of each character in the string are ignored.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeBytesin interfaceDataOutput- Parameters:
s- aStringcontaining the value to be written.- Throws:
NullPointerException- ifsisnull.IOException- if an I/O error occurs.
-
writeChars
Writes a string to the output stream. For every character in the strings, taken in order, two bytes are written to the output stream, ordered according to the current byte order setting. If network byte order is being used, the high-order byte is written first; the order is reversed otherwise. Ifsisnull, aNullPointerExceptionis thrown.If
s.lengthis zero, then no bytes are written. Otherwise, the characters[0]is written first, thens[1], and so on; the last character written iss[s.length-1].If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Specified by:
writeCharsin interfaceDataOutput- Parameters:
s- aStringcontaining the value to be written.- Throws:
NullPointerException- ifsisnull.IOException- if an I/O error occurs.
-
writeUTF
Writes two bytes of length information to the output stream in network byte order, followed by the modified UTF-8 representation of every character in the strings. Ifsisnull, aNullPointerExceptionis thrown. Each character in the stringsis converted to a group of one, two, or three bytes, depending on the value of the character.If a character
cis in the range\u0001through\u007f, it is represented by one byte:(byte)c
If a character
cis\u0000or is in the range\u0080through\u07ff, then it is represented by two bytes, to be written in the order shown:(byte)(0xc0 | (0x1f & (c >> 6))) (byte)(0x80 | (0x3f & c))If a character
cis in the range\u0800throughuffff, then it is represented by three bytes, to be written in the order shown:(byte)(0xe0 | (0x0f & (c >> 12))) (byte)(0x80 | (0x3f & (c >> 6))) (byte)(0x80 | (0x3f & c))First, the total number of bytes needed to represent all the characters of
sis calculated. If this number is larger than65535, then aUTFDataFormatExceptionis thrown. Otherwise, this length is written to the output stream in exactly the manner of thewriteShortmethod; after this, the one-, two-, or three-byte representation of each character in the stringsis written.The current byte order setting is ignored.
If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
Note: This method should not be used in the implementation of image formats that use standard UTF-8, because the modified UTF-8 used here is incompatible with standard UTF-8.
- Specified by:
writeUTFin interfaceDataOutput- Parameters:
s- aStringcontaining the value to be written.- Throws:
NullPointerException- ifsisnull.UTFDataFormatException- if the modified UTF-8 representation ofsrequires more than 65536 bytes.IOException- if an I/O error occurs.
-
writeShorts
Writes a sequence of shorts to the stream at the current position. Iflenis 0, nothing is written. The shorts[off]is written first, then the shorts[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Parameters:
s- an array ofshorts to be written.off- the start offset in the data.len- the number ofshorts to write.- Throws:
IndexOutOfBoundsException- ifoffis negative,lenis negative, oroff + lenis greater thans.length.NullPointerException- ifsisnull.IOException- if an I/O error occurs.
-
writeChars
Writes a sequence of chars to the stream at the current position. Iflenis 0, nothing is written. The charc[off]is written first, then the charc[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Parameters:
c- an array ofchars to be written.off- the start offset in the data.len- the number ofchars to write.- Throws:
IndexOutOfBoundsException- ifoffis negative,lenis negative, oroff + lenis greater thanc.length.NullPointerException- ifcisnull.IOException- if an I/O error occurs.
-
writeInts
Writes a sequence of ints to the stream at the current position. Iflenis 0, nothing is written. The inti[off]is written first, then the inti[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Parameters:
i- an array ofints to be written.off- the start offset in the data.len- the number ofints to write.- Throws:
IndexOutOfBoundsException- ifoffis negative,lenis negative, oroff + lenis greater thani.length.NullPointerException- ifiisnull.IOException- if an I/O error occurs.
-
writeLongs
Writes a sequence of longs to the stream at the current position. Iflenis 0, nothing is written. The longl[off]is written first, then the longl[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Parameters:
l- an array oflongs to be written.off- the start offset in the data.len- the number oflongs to write.- Throws:
IndexOutOfBoundsException- ifoffis negative,lenis negative, oroff + lenis greater thanl.length.NullPointerException- iflisnull.IOException- if an I/O error occurs.
-
writeFloats
Writes a sequence of floats to the stream at the current position. Iflenis 0, nothing is written. The floatf[off]is written first, then the floatf[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Parameters:
f- an array offloats to be written.off- the start offset in the data.len- the number offloats to write.- Throws:
IndexOutOfBoundsException- ifoffis negative,lenis negative, oroff + lenis greater thanf.length.NullPointerException- iffisnull.IOException- if an I/O error occurs.
-
writeDoubles
Writes a sequence of doubles to the stream at the current position. Iflenis 0, nothing is written. The doubled[off]is written first, then the doubled[off + 1], and so on. The byte order of the stream is used to determine the order in which the individual bytes are written.If the bit offset within the stream is non-zero, the remainder of the current byte is padded with 0s and written out first. The bit offset will be 0 after the write.
- Parameters:
d- an array ofdoubless to be written.off- the start offset in the data.len- the number ofdoubles to write.- Throws:
IndexOutOfBoundsException- ifoffis negative,lenis negative, oroff + lenis greater thand.length.NullPointerException- ifdisnull.IOException- if an I/O error occurs.
-
writeBit
Writes a single bit, given by the least significant bit of the argument, to the stream at the current bit offset within the current byte position. The upper 31 bits of the argument are ignored. The given bit replaces the previous bit at that position. The bit offset is advanced by one and reduced modulo 8.If any bits of a particular byte have never been set at the time the byte is flushed to the destination, those bits will be set to 0 automatically.
- Parameters:
bit- anintwhose least significant bit is to be written to the stream.- Throws:
IOException- if an I/O error occurs.
-
writeBits
Writes a sequence of bits, given by thenumBitsleast significant bits of thebitsargument in left-to-right order, to the stream at the current bit offset within the current byte position. The upper64 - numBitsbits of the argument are ignored. The bit offset is advanced bynumBitsand reduced modulo 8. Note that a bit offset of 0 always indicates the most-significant bit of the byte, and bytes of bits are written out in sequence as they are encountered. Thus bit writes are always effectively in network byte order. The actual stream byte order setting is ignored.Bit data may be accumulated in memory indefinitely, until
flushBeforeis called. At that time, all bit data prior to the flushed position will be written.If any bits of a particular byte have never been set at the time the byte is flushed to the destination, those bits will be set to 0 automatically.
- Parameters:
bits- alongcontaining the bits to be written, starting with the bit in positionnumBits - 1down to the least significant bit.numBits- anintbetween 0 and 64, inclusive.- Throws:
IllegalArgumentException- ifnumBitsis not between 0 and 64, inclusive.IOException- if an I/O error occurs.
-
flushBefore
Flushes all data prior to the given position to the underlying destination, such as anOutputStreamorFile. Attempting to seek to the flushed portion of the stream will result in anIndexOutOfBoundsException.- Specified by:
flushBeforein interfaceImageInputStream- Parameters:
pos- alongcontaining the length of the stream prefix that may be flushed to the destination.- Throws:
IndexOutOfBoundsException- ifposlies in the flushed portion of the stream or past the current stream position.IOException- if an I/O error occurs.
-