VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.ColorManagement Namespace / FastCompositeColorTransform Class / Transform16bitVector(Byte[],Int32,Int32,Byte[],Int32) Method
Syntax Requirements SeeAlso
In This Topic
Transform16bitVector(Byte[],Int32,Int32,Byte[],Int32) Method (FastCompositeColorTransform)
In This Topic
Performs 16-bit color vector transform.
Syntax
'Declaration

Public Overrides Sub Transform16bitVector( _
ByVal sourceColorChannels
Array that contains color channels 16-bit integer values, in range from 0 to 65535, to transform. Each color channel 16-bit value is encoded by 2 bytes, where first byte is low byte and second is high 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 16-bit integer values, in range from 0 to 65535. Each color channel 16-bit value is encoded by 2 bytes, where first byte is low byte and second is high byte.
() As Byte, _
ByVal destIndex
A 32-bit integer that represents the index in the destColorChannels at which writing begins.
As System.Int32 _
)
public override void Transform16bitVector(
byte[] sourceColorChannels,
System.Int32 sourceIndex,
System.Int32 sourceColorCount,
byte[] destColorChannels,
System.Int32 destIndex
)

Parameters

sourceColorChannels
Array that contains color channels 16-bit integer values, in range from 0 to 65535, to transform. Each color channel 16-bit value is encoded by 2 bytes, where first byte is low byte and second is high 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 16-bit integer values, in range from 0 to 65535. Each color channel 16-bit value is encoded by 2 bytes, where first byte is low byte and second is high byte.
destIndex
A 32-bit integer that represents the index in the destColorChannels at which writing begins.
Requirements

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

See Also