Interface IPdfFilter
Represents PDF filter.
Namespace: Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Filters
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public interface IPdfFilter
Properties
Name
Gets the name of the PDF filter.
Declaration
string Name { get; }
Property Value
System.String
The name. |
Methods
Decode(PdfObject, Byte[], DecodeParameters)
Decodes the specified data.
Declaration
byte[] Decode(PdfObject decodedObject, byte[] inputData, DecodeParameters decodeParameters)
Parameters
PdfObject
decodedObject
The decoded object. |
System.Byte[]
inputData
The input data. |
DecodeParameters
decodeParameters
The decode parameters. |
Returns
System.Byte[]
|
Encode(PdfObject, Byte[])
Encodes the specified data.
Declaration
byte[] Encode(PdfObject encodedObject, byte[] inputData)
Parameters
PdfObject
encodedObject
The encoded object. |
System.Byte[]
inputData
The input data. |
Returns
System.Byte[]
The encoded data. |