java.io.Closeable
, java.lang.AutoCloseable
, ASCII85Constants
public class ASCII85InputStream extends java.io.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 | Description |
---|---|
ASCII85InputStream(java.io.InputStream in) |
Modifier and Type | Method | Description |
---|---|---|
int |
read() |
Copyright 1999-2016 The Apache Software Foundation. All Rights Reserved.