Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ColorResolutionCommandPaletteFlags Enumeration
See Also  
Leadtools.ImageProcessing Namespace : ColorResolutionCommandPaletteFlags Enumeration



Palette options, for the ColorResolutionCommand.PaletteFlags property.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum ColorResolutionCommandPaletteFlags 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As ColorResolutionCommandPaletteFlags
C# 
[FlagsAttribute()]
public enum ColorResolutionCommandPaletteFlags : Enum 
C++/CLI 
[FlagsAttribute()]
public enum class ColorResolutionCommandPaletteFlags : public Enum 

Members

MemberDescription
None Default.
Fixed Use the LEAD Fixed palette.
Optimized Create an optimized palette, or if you supply a palette in ColorResolutionCommand.SetPalette, supply optimized colors for specified entries in the palette.
Identity Insert the Windows system palette.
UsePalette Use the palette specified in ColorResolutionCommand.SetPalette, without supplying optimized colors.
FastMatch Use a predefined table to speed conversion using your own palette. Refer to RasterUserMatchTable.
Netscape Use the fixed palette that is employed by Netscape Navigator and by Microsoft Internet Explorer.
SlowMatch Use with Optimized to use a slower but more accurate matching process.
FavorPureColors Give colors that occur frequently in the image palette entries of their own in the optimized palette.

Remarks

The palette options are useful only when the resulting image requires a palette (when it is 8 bits per pixel or less).

For more information, refer to Introduction.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.ColorResolutionCommandPaletteFlags

Requirements

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

See Also