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.
(->image-output-stream-impl)
Constructor.
Constructs an ImageOutputStreamImpl.
Constructor. Constructs an ImageOutputStreamImpl.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
(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.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close