Class Overview
ASCII85Encode filter can be used to encode any data stream
into a stream that does not contain any binary characters.
Summary
Public Constructors |
|
ASCII85Encode(Filter input_filter)
Instantiates a new ASCII85Encode from Filter
|
|
ASCII85Encode(Filter input_filter, long line_width)
Instantiates a new ASCII85Encode from Filter with specified line width
|
|
ASCII85Encode(Filter input_filter, long line_width, long buf_sz)
Instantiates a new ASCII85Encode
|
[Expand]
Inherited Methods |
From class
com.pdftron.filters.Filter
static
Filter
|
__Create(long impl, Filter attached)
|
long
|
__GetHandle()
|
void
|
__SetRefHandle(Object ref)
|
void
|
attachFilter(Filter attach_filter)
Attaches a filter to the this filter.
|
boolean
|
canSeek()
determine whether the stream supports seeking
|
void
|
close()
Frees the native memory of the object.
|
Filter
|
createInputIterator()
Create Filter iterator.
|
void
|
destroy()
Frees the native memory of the object.
|
void
|
flush()
Forces any data remaining in the buffer to be written to input or
output filter.
|
void
|
flushAll()
Forces any data remaining in the filter chain to the source or destination.
|
Filter
|
getAttachedFilter()
Get the attached filter.
|
String
|
getDecodeName()
Get the decode name.
|
String
|
getFilePath()
Get the file path.
|
String
|
getName()
Get the name.
|
Filter
|
getSourceFilter()
Get the source filter.
|
boolean
|
isInputFilter()
Checks if is input filter.
|
Filter
|
releaseAttachedFilter()
Release the ownership of the attached filter.
|
void
|
seek(long offset, int origin)
When overridden in a derived class, sets the position within the current stream.
|
void
|
setStreamLength(long bytes)
The functions specifies the length of the data stream.
|
long
|
size()
Returns the size of buffer returned by Begin().
|
long
|
tell()
Reports the current read position in the stream relative to the stream origin.
|
void
|
writeToFile(String path, boolean append)
Writes the entire filter, starting at current position, to
specified filepath.
|
|
From class
java.lang.Object
boolean
|
equals(Object arg0)
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.AutoCloseable
|
Public Constructors
public
ASCII85Encode
(Filter input_filter)
Instantiates a new ASCII85Encode from Filter
Parameters
input_filter |
the input Filter object |
public
ASCII85Encode
(Filter input_filter, long line_width)
Instantiates a new ASCII85Encode from Filter with specified line width
Parameters
input_filter |
the input Filter object |
public
ASCII85Encode
(Filter input_filter, long line_width, long buf_sz)
Instantiates a new ASCII85Encode
Parameters
input_filter |
the input Filter object |
buf_sz |
buffer size |