VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ColorManagement Namespace / ColorTransform Class / Transform(Double[],Double[]) Method
Syntax Requirements SeeAlso
In This Topic
    Transform(Double[],Double[]) Method (ColorTransform)
    In This Topic
    Performs single color transform.
    Syntax
    'Declaration
    
    Public Overridable Sub Transform( _
    ByVal sourceColorChannels
    Array that contains color channels real values, in range from 0 to 1, to transform.
    () As Double, _
    ByVal destColorChannels
    Array that contains transformed color channels real values, in range from 0 to 1.
    () As Double _
    )
    public virtual void Transform(
    double[] sourceColorChannels,
    double[] destColorChannels
    )
    public: virtual void Transform(
    double[]* sourceColorChannels,
    double[]* destColorChannels
    )
    public:
    virtual void Transform(
    array<double>^ sourceColorChannels,
    array<double>^ destColorChannels
    )

    Parameters

    sourceColorChannels
    Array that contains color channels real values, in range from 0 to 1, to transform.
    destColorChannels
    Array that contains transformed color channels real values, in range from 0 to 1.
    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also