Class TIFFOutputStream
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
com.adobe.internal.pdftoolkit.core.filter.TIFFOutputStream
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
TIFFOutputStream
Performs TIFF image filtering of an output stream
-
Constructor Summary
ConstructorsConstructorDescriptionTIFFOutputStream(OutputStream out, FilterParams p) Creates an output stream filter. -
Method Summary
Methods inherited from class java.io.FilterOutputStream
close, flushMethods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
TIFFOutputStream
Creates an output stream filter.- Parameters:
out- the output stream
-
TIFFOutputStream
-
-
Method Details
-
write
Writes a byte. Will block until the byte is actually written.- Overrides:
writein classFilterOutputStream- Parameters:
b- the byte- Throws:
IOException- If an I/O error has occurred.
-
write
Writes a subarray of bytes.- Overrides:
writein classFilterOutputStream- Parameters:
b- the data to be writtenoff- the start offset in the datalen- the number of bytes that are written- Throws:
IOException- If an I/O error has occurred.
-
write
Writes an array of bytes. Will block until the bytes are actually written.- Overrides:
writein classFilterOutputStream- Parameters:
b- the data to be written- Throws:
IOException- If an I/O error has occurred.
-
getTotalOut
public long getTotalOut()Counts the number of bytes written by this filter.- Returns:
- actual number of bytes written
-