Class ASCII85Encode
ASCII85Encode filter can be used to encode any data stream into a stream that does not contain any binary characters.
Implements
Inherited Members
Namespace: pdftron.Filters
Assembly: PDFNet.dll
Syntax
public class ASCII85Encode : Filter, IDisposable
Constructors
ASCII85Encode(Filter)
Instantiates a new ASCII85Encode from specified input filter
Declaration
public ASCII85Encode(Filter input_filter)
Parameters
Type | Name | Description |
---|---|---|
Filter | input_filter | input filter |
Exceptions
Type | Condition |
---|---|
PDFNetException | PDFNetException the PDFNet exception |
ASCII85Encode(Filter, int, int)
Instantiates a new ASCII85Encode.
Declaration
public ASCII85Encode(Filter input_filter, int line_width, int buf_sz)
Parameters
Type | Name | Description |
---|---|---|
Filter | input_filter | input filter |
int | line_width | specifies the width of the encoded line expressed in the number of characters. |
int | buf_sz | size of the buffer/input filter |
Exceptions
Type | Condition |
---|---|
PDFNetException | PDFNetException the PDFNet exception |