Leadtools.ColorConversion Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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 Enum
Visual Basic (Usage)Copy Code
Dim instance As IccProfileFlags
C# 
[FlagsAttribute()]
public enum IccProfileFlags : Enum 
C++/CLI 
[FlagsAttribute()]
public enum class IccProfileFlags : public Enum 

Members

MemberDescription
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

.
EmbeddedIccProfile ICC profile is embedded.
NotEmbeddedIccProfile ICC profile is not embedded.
UseProfileAnyWhere ICC profile can be used independently from color data.
UseProfileWithEmbeddedDataOnly ICC profile cannot be used independently from color data.

Remarks

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

Inheritance Hierarchy

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

Requirements

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

See Also