VintaSoft Imaging .NET SDK 12.3: Documentation for .NET developer
Vintasoft.Imaging.ColorManagement Namespace / ColorTransform Class / TransformFrom8bitVector(Byte[],Int32,Int32,Double[],Int32) Method
Syntax Requirements SeeAlso
In This Topic
    TransformFrom8bitVector(Byte[],Int32,Int32,Double[],Int32) Method (ColorTransform)
    In This Topic
    Performs color vector transform from 8-bit values.
    Syntax
    'Declaration
    
    Public Overridable Sub TransformFrom8bitVector( _
    ByVal sourceColorChannels
    Array that contains color channels 8-bit integer values, in range from 0 to 255, to transform. Each color channel 8-bit value is encoded by 1 byte.
    () As Byte, _
    ByVal sourceIndex
    A 32-bit integer that represents the index in the sourceColorChannels at which reading begins.
    As System.Int32, _
    ByVal sourceColorCount
    Number of colors to transform.
    As System.Int32, _
    ByVal destColorChannels
    Array that contains transformed color channels real values, in range from 0 to 1.
    () As Double, _
    ByVal destIndex
    A 32-bit integer that represents the index in the destColorChannels at which writing begins.
    As System.Int32 _
    )
    public virtual void TransformFrom8bitVector(
    byte[] sourceColorChannels,
    System.Int32 sourceIndex,
    System.Int32 sourceColorCount,
    double[] destColorChannels,
    System.Int32 destIndex
    )
    public: virtual void TransformFrom8bitVector(
    byte[]* sourceColorChannels,
    System.Int32 sourceIndex,
    System.Int32 sourceColorCount,
    double[]* destColorChannels,
    System.Int32 destIndex
    )
    public:
    virtual void TransformFrom8bitVector(
    array<byte>^ sourceColorChannels,
    System.Int32 sourceIndex,
    System.Int32 sourceColorCount,
    array<double>^ destColorChannels,
    System.Int32 destIndex
    )

    Parameters

    sourceColorChannels
    Array that contains color channels 8-bit integer values, in range from 0 to 255, to transform. Each color channel 8-bit value is encoded by 1 byte.
    sourceIndex
    A 32-bit integer that represents the index in the sourceColorChannels at which reading begins.
    sourceColorCount
    Number of colors to transform.
    destColorChannels
    Array that contains transformed color channels real values, in range from 0 to 1.
    destIndex
    A 32-bit integer that represents the index in the destColorChannels at which writing begins.
    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