LEADTOOLS Image File Support (Leadtools.Codecs assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
JpegQualityFactor Property
See Also 
Leadtools.Codecs Namespace > CodecsXpsSaveOptions Class : JpegQualityFactor Property



Gets or sets the JPEG quality factor used saving a raster image as an Open XML Paper Specification (XPS) document.

Syntax

Visual Basic (Declaration) 
Public Property JpegQualityFactor As Integer
Visual Basic (Usage)Copy Code
Dim instance As CodecsXpsSaveOptions
Dim value As Integer
 
instance.JpegQualityFactor = value
 
value = instance.JpegQualityFactor
C# 
public int JpegQualityFactor {get; set;}
C++/CLI 
public:
property int JpegQualityFactor {
   int get();
   void set (    int value);
}

Property Value

A value from 2 to 255, where 2 is the highest quality and 255 is the most compression. You can also use a factor of 0 to produce lossless JPEG compressed images. Default value is 2 (Highest quality).

Example

For an example, refer to CodecsXpsOptions.

Remarks

The RasterCodecs object will use the JpegQualityFactor value when images are saved with the following formats:

Requirements

Target Platforms: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also