Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
UseFastConversion Property
See Also 
Leadtools.Codecs Namespace > CodecsJpegLoadOptions Class : UseFastConversion Property



Enables or disables use of the fast color conversions when loading CMYK or CIELab files.

Syntax

Visual Basic (Declaration) 
Public Property UseFastConversion As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CodecsJpegLoadOptions
Dim value As Boolean
 
instance.UseFastConversion = value
 
value = instance.UseFastConversion
C# 
public bool UseFastConversion {get; set;}
C++/CLI 
public:
property bool UseFastConversion {
   bool get();
   void set (bool value);
}

Return Value

true to enable fast color conversion, false to disable it.

Example

For an example, refer to CodecsJpegOptions.

Remarks

Setting this property to true will greatly speed up the loading of CMYK and CIELab files, but it will reduce the image quality.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also