LEADTOOLS Color Conversion (Leadtools.ColorConversion assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
IccProfileFlags Enumeration
See Also  
Leadtools.ColorConversion Namespace : IccProfileFlags Enumeration



Flags that indicate if the ICC profile is embedded or not, and if the ICC profile can be used independently from the embedded color data or not.

Syntax

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

Members

MemberDescription
EmbeddedIccProfileICC profile is embedded.
None

ICC profile is not embedded and ICC profile can be used independently from color data.

Its value is equal to = IccProfileFlags.NotEmbeddedIccProfile | IccProfileFlags.UseProfileAnyWhere

.
NotEmbeddedIccProfileICC profile is not embedded.
UseProfileAnyWhereICC profile can be used independently from color data.
UseProfileWithEmbeddedDataOnlyICC profile cannot be used independently from color data.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Flags that indicate if the profile is embedded or not EmbeddedIccProfile, NotEmbeddedIccProfile
Flags that indicate if the profile can be used independently from the embedded color data or not UseProfileAnyWhere, UseProfileWithEmbeddedDataOnly

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ColorConversion.IccProfileFlags

Requirements

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

See Also