LEADTOOLS Color Conversion (Leadtools.ColorConversion assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
IccLookupTableAToBTagType Constructor(Int32,Int32,IccTagTypeBase[],IccTagTypeBase[],IccTagTypeBase[],IccColorLookupTableBase,IccMatrix)
See Also 
Leadtools.ColorConversion Namespace > IccLookupTableAToBTagType Class > IccLookupTableAToBTagType Constructor : IccLookupTableAToBTagType Constructor(Int32,Int32,IccTagTypeBase[],IccTagTypeBase[],IccTagTypeBase[],IccColorLookupTableBase,IccMatrix)



inputChannels
Number of input channels.
outputChannels
Number of output channels.
curveB
Array that contains the B curves data of type IccCurveTagType or IccParametricCurveTagType.
curveM
Array that contains the M curves data of type IccCurveTagType or IccParametricCurveTagType.
curveA
Array that contains the A curves data of type IccCurveTagType or IccParametricCurveTagType.
colorLookupTable
Array that contains the CLUT data of type IccColorLookupTable8Bit or IccColorLookupTable16Bit.
matrix
IccMatrix class that contains the Matrix data.
Initializes a new IccLookupTableAToBTagType with explicit parameters.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal inputChannels As Integer, _
   ByVal outputChannels As Integer, _
   ByVal curveB() As IccTagTypeBase, _
   ByVal curveM() As IccTagTypeBase, _
   ByVal curveA() As IccTagTypeBase, _
   ByVal colorLookupTable As IccColorLookupTableBase, _
   ByVal matrix As IccMatrix _
)
Visual Basic (Usage)Copy Code
Dim inputChannels As Integer
Dim outputChannels As Integer
Dim curveB() As IccTagTypeBase
Dim curveM() As IccTagTypeBase
Dim curveA() As IccTagTypeBase
Dim colorLookupTable As IccColorLookupTableBase
Dim matrix As IccMatrix
 
Dim instance As New IccLookupTableAToBTagType(inputChannels, outputChannels, curveB, curveM, curveA, colorLookupTable, matrix)
C# 
public IccLookupTableAToBTagType( 
   int inputChannels,
   int outputChannels,
   IccTagTypeBase[] curveB,
   IccTagTypeBase[] curveM,
   IccTagTypeBase[] curveA,
   IccColorLookupTableBase colorLookupTable,
   IccMatrix matrix
)

Parameters

inputChannels
Number of input channels.
outputChannels
Number of output channels.
curveB
Array that contains the B curves data of type IccCurveTagType or IccParametricCurveTagType.
curveM
Array that contains the M curves data of type IccCurveTagType or IccParametricCurveTagType.
curveA
Array that contains the A curves data of type IccCurveTagType or IccParametricCurveTagType.
colorLookupTable
Array that contains the CLUT data of type IccColorLookupTable8Bit or IccColorLookupTable16Bit.
matrix
IccMatrix class that contains the Matrix data.

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