API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.imageio.stream. ImageOutputStream View Source
Author(s)
Since
Version
0.5
Serial
Hierarchy
 DataInput
      ImageInputStream
          ImageOutputStream
Subinterfaces
Description
public interface ImageOutputStream
  A seekable output stream interface for use by ImageWriters.
See also:    ImageInputStream
Methods
Hide/Show inherited methods
public void flushBefore (long pos) throws IOException [Specified in ImageInputStream]
  Flushes all data prior to the given position to the underlying destination, such as an OutputStream or File.
public void write (byte[] b) throws IOException [Specified in DataOutput]
  Writes a sequence of bytes to the stream at the current position.
public void write (byte[] b, int off, int len) throws IOException [Specified in DataOutput]
  Writes a sequence of bytes to the stream at the current position.
public void write (int b) throws IOException [Specified in DataOutput]
  Writes a single byte to the stream at the current position.
public void writeBit (int bit) throws IOException
  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.
public void writeBits (long bits, int numBits) throws IOException
  Writes a sequence of bits, given by the numBits least significant bits of the bits argument in left-to-right order, to the stream at the current bit offset within the current byte position.
public void writeBoolean (boolean v) throws IOException [Specified in DataOutput]
  Writes a boolean value to the stream.
public void writeByte (int v) throws IOException [Specified in DataOutput]
  Writes the 8 low-order bits of v to the stream.
public void writeBytes (String s) throws IOException [Specified in DataOutput]
  Writes a string to the output stream.
public void writeChar (int v) throws IOException [Specified in DataOutput]
  This method is a synonym for writeShort.
public void writeChars (char[] c, int off, int len) throws IOException
  Writes a sequence of chars to the stream at the current position.
public void writeChars (String s) throws IOException [Specified in DataOutput]
  Writes a string to the output stream.
public void writeDouble (double v) throws IOException [Specified in DataOutput]
  Writes a double value, which is comprised of four bytes, to the output stream.
public void writeDoubles (double[] d, int off, int len) throws IOException
  Writes a sequence of doubles to the stream at the current position.
public void writeFloat (float v) throws IOException [Specified in DataOutput]
  Writes a float value, which is comprised of four bytes, to the output stream.
public void writeFloats (float[] f, int off, int len) throws IOException
  Writes a sequence of floats to the stream at the current position.
public void writeInt (int v) throws IOException [Specified in DataOutput]
  Writes the 32 bits of v to the stream.
public void writeInts (int[] i, int off, int len) throws IOException
  Writes a sequence of ints to the stream at the current position.
public void writeLong (long v) throws IOException [Specified in DataOutput]
  Writes the 64 bits of v to the stream.
public void writeLongs (long[] l, int off, int len) throws IOException
  Writes a sequence of longs to the stream at the current position.
public void writeShort (int v) throws IOException [Specified in DataOutput]
  Writes the 16 low-order bits of v to the stream.
public void writeShorts (short[] s, int off, int len) throws IOException
  Writes a sequence of shorts to the stream at the current position.
public void writeUTF (String s) throws IOException [Specified in DataOutput]
  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 string s.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar