Class JpegEncoderParameters
Represents parameters of the JPEG encoder.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Core.Imaging.Jpeg.Encoder
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class JpegEncoderParameters : INotifyPropertyChanged
Constructors
JpegEncoderParameters()
Initializes a new instance of the JpegEncoderParameters class.
Declaration
public JpegEncoderParameters()
Properties
ChrominanceTable
Gets or sets a 64 byte array which corresponds to a JPEG Chrominance Quantization table.
Declaration
public byte[] ChrominanceTable { get; set; }
Property Value
System.Byte[]
|
EncodingType
Gets or sets type of the JPEG encoder.
Declaration
public JpegEncodingType EncodingType { get; set; }
Property Value
JpegEncodingType
|
LuminanceTable
Gets or sets a 64 byte array which corresponds to a JPEG Luminance Quantization table.
Declaration
public byte[] LuminanceTable { get; set; }
Property Value
System.Byte[]
|
QuantizingQuality
Gets or sets quantizing quality.
Declaration
public float QuantizingQuality { get; set; }
Property Value
System.Single
|
SamplePrecision
Gets or sets the precision in bits for the samples of the components in the frame.
Declaration
public int SamplePrecision { get; set; }
Property Value
System.Int32
|
Remarks
CCITT T.81, Annex B, section B.2.2 Frame header syntax (see P parameter in the Table B.2).
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
System.ComponentModel.PropertyChangedEventHandler
|