Class DctDecode
Represents DCT filter.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Fixed.FormatProviders.Pdf.Filters
Assembly: Telerik.Windows.Documents.Fixed.dll
Syntax
public class DctDecode : IPdfFilter
Constructors
DctDecode()
Declaration
public DctDecode()
Properties
Name
Gets the name of the PDF filter.
Declaration
public string Name { get; }
Property Value
System.String
The name. |
Implements
Methods
Decode(PdfObject, Byte[], DecodeParameters)
Decodes the specified data.
Declaration
public virtual byte[] Decode(PdfObject decodedObject, byte[] inputData, DecodeParameters parms)
Parameters
PdfObject
decodedObject
The decoded object. |
System.Byte[]
inputData
The input data. |
DecodeParameters
parms
|
Returns
System.Byte[]
|
Implements
DecodeWithJpegDecoder(Byte[])
Decodes the data with Telerik's internal JpegDecoder class.
This method was used in previous versions and you can achieve backwards compatibility by using it in the Decode method.
Declaration
protected static byte[] DecodeWithJpegDecoder(byte[] inputData)
Parameters
System.Byte[]
inputData
The input data. |
Returns
System.Byte[]
The decoded data. |
Encode(PdfObject, Byte[])
Encodes the specified data.
Declaration
public byte[] Encode(PdfObject encodedObject, byte[] inputData)
Parameters
PdfObject
encodedObject
The encoded object. |
System.Byte[]
inputData
The input data. |
Returns
System.Byte[]
The encoded data. |