Liking cljdoc? Tell your friends :D

javax.imageio.stream.ImageOutputStreamImpl

An abstract class implementing the ImageOutputStream interface. This class is designed to reduce the number of methods that must be implemented by subclasses.

An abstract class implementing the ImageOutputStream interface.
This class is designed to reduce the number of methods that must
be implemented by subclasses.
raw docstring

->image-output-stream-implclj

(->image-output-stream-impl)

Constructor.

Constructs an ImageOutputStreamImpl.

Constructor.

Constructs an ImageOutputStreamImpl.
raw docstring

writeclj

(write this b)
(write this b off len)

Description copied from interface: ImageOutputStream

b - an array of bytes to be written. - byte[] off - the start offset in the data. - int len - the number of bytes to write. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

b - an array of bytes to be written. - `byte[]`
off - the start offset in the data. - `int`
len - the number of bytes to write. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-bitclj

(write-bit this bit)

Description copied from interface: ImageOutputStream

bit - an int whose least significant bit is to be written to the stream. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

bit - an int whose least significant bit is to be written to the stream. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-bitsclj

(write-bits this bits num-bits)

Description copied from interface: ImageOutputStream

bits - a long containing the bits to be written, starting with the bit in position numBits - 1 down to the least significant bit. - long num-bits - an int between 0 and 64, inclusive. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

bits - a long containing the bits to be written, starting with the bit in position numBits - 1 down to the least significant bit. - `long`
num-bits - an int between 0 and 64, inclusive. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-booleanclj

(write-boolean this v)

Description copied from interface: ImageOutputStream

v - the boolean to be written. - boolean

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - the boolean to be written. - `boolean`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-byteclj

(write-byte this v)

Description copied from interface: ImageOutputStream

v - an int containing the byte value to be written. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - an int containing the byte value to be written. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-bytesclj

(write-bytes this s)

Description copied from interface: ImageOutputStream

s - a String containing the value to be written. - java.lang.String

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

s - a String containing the value to be written. - `java.lang.String`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-charclj

(write-char this v)

Description copied from interface: ImageOutputStream

v - an int containing the char (unsigned short) value to be written. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - an int containing the char (unsigned short) value to be written. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-charsclj

(write-chars this s)
(write-chars this c off len)

Description copied from interface: ImageOutputStream

c - an array of chars to be written. - char[] off - the start offset in the data. - int len - the number of chars to write. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

c - an array of chars to be written. - `char[]`
off - the start offset in the data. - `int`
len - the number of chars to write. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-doubleclj

(write-double this v)

Description copied from interface: ImageOutputStream

v - a double containing the value to be written. - double

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - a double containing the value to be written. - `double`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-doublesclj

(write-doubles this d off len)

Description copied from interface: ImageOutputStream

d - an array of doubless to be written. - double[] off - the start offset in the data. - int len - the number of doubles to write. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

d - an array of doubless to be written. - `double[]`
off - the start offset in the data. - `int`
len - the number of doubles to write. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-floatclj

(write-float this v)

Description copied from interface: ImageOutputStream

v - a float containing the value to be written. - float

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - a float containing the value to be written. - `float`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-floatsclj

(write-floats this f off len)

Description copied from interface: ImageOutputStream

f - an array of floats to be written. - float[] off - the start offset in the data. - int len - the number of floats to write. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

f - an array of floats to be written. - `float[]`
off - the start offset in the data. - `int`
len - the number of floats to write. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-intclj

(write-int this v)

Description copied from interface: ImageOutputStream

v - an int containing the value to be written. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - an int containing the value to be written. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-intsclj

(write-ints this i off len)

Description copied from interface: ImageOutputStream

i - an array of ints to be written. - int[] off - the start offset in the data. - int len - the number of ints to write. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

i - an array of ints to be written. - `int[]`
off - the start offset in the data. - `int`
len - the number of ints to write. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-longclj

(write-long this v)

Description copied from interface: ImageOutputStream

v - a long containing the value to be written. - long

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - a long containing the value to be written. - `long`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-longsclj

(write-longs this l off len)

Description copied from interface: ImageOutputStream

l - an array of longs to be written. - long[] off - the start offset in the data. - int len - the number of longs to write. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

l - an array of longs to be written. - `long[]`
off - the start offset in the data. - `int`
len - the number of longs to write. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-shortclj

(write-short this v)

Description copied from interface: ImageOutputStream

v - an int containing the short value to be written. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

v - an int containing the short value to be written. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-shortsclj

(write-shorts this s off len)

Description copied from interface: ImageOutputStream

s - an array of shorts to be written. - short[] off - the start offset in the data. - int len - the number of shorts to write. - int

throws: java.io.IOException - if an I/O error occurs.

Description copied from interface: ImageOutputStream

s - an array of shorts to be written. - `short[]`
off - the start offset in the data. - `int`
len - the number of shorts to write. - `int`

throws: java.io.IOException - if an I/O error occurs.
raw docstring

write-utfclj

(write-utf this s)

Description copied from interface: ImageOutputStream

s - a String containing the value to be written. - java.lang.String

throws: java.io.UTFDataFormatException - if the modified UTF-8 representation of s requires more than 65536 bytes.

Description copied from interface: ImageOutputStream

s - a String containing the value to be written. - `java.lang.String`

throws: java.io.UTFDataFormatException - if the modified UTF-8 representation of s requires more than 65536 bytes.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close