public class ASCII85InputStream extends InputStream implements ASCII85Constants
The class is derived from InputStream instead of FilteredInputStream because we can use the read(byte[], int, int) method from InputStream which simply delegates to read(). This makes the implementation easier.
The filter is described in chapter 3.13.3 of the PostScript Language Reference (third edition).
END, EOD, EOL, POW85, START, ZERO, ZERO_ARRAY
Constructor and Description |
---|
ASCII85InputStream(InputStream in) |
Modifier and Type | Method and Description |
---|---|
int |
read() |
available, close, mark, markSupported, read, read, reset, skip
public ASCII85InputStream(InputStream in)
FilterInputStream
public int read() throws IOException
read
in class InputStream
IOException
FilterInputStream
Copyright © 2023 Apache Software Foundation. All rights reserved.