Class FillOrderChangeInputStream
- java.lang.Object
-
- java.io.InputStream
-
- java.io.FilterInputStream
-
- com.tom_roush.pdfbox.filter.ccitt.FillOrderChangeInputStream
-
- All Implemented Interfaces:
Closeable,AutoCloseable
public final class FillOrderChangeInputStream extends FilterInputStream
This filtering input stream does a fill order change required for certain TIFF images.
-
-
Field Summary
-
Fields inherited from class java.io.FilterInputStream
in
-
-
Constructor Summary
Constructors Constructor Description FillOrderChangeInputStream(InputStream in)Main constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intread()intread(byte[] b, int off, int len)-
Methods inherited from class java.io.FilterInputStream
available, close, mark, markSupported, read, reset, skip
-
Methods inherited from class java.io.InputStream
readAllBytes, readNBytes, transferTo
-
-
-
-
Constructor Detail
-
FillOrderChangeInputStream
public FillOrderChangeInputStream(InputStream in)
Main constructor.- Parameters:
in- the underlying input stream
-
-
Method Detail
-
read
public int read(byte[] b, int off, int len) throws IOException- Overrides:
readin classFilterInputStream- Throws:
IOException
-
read
public int read() throws IOException- Overrides:
readin classFilterInputStream- Throws:
IOException
-
-