Click or drag to resize
SoSFImageGetValue Method (SbVec2s, Int32, SoSFImageDataTypes)

Returns the pixels in the image as an array of values of type <dataType>.

Namespace: OIV.Inventor.Fields
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public SbNativeArray<byte> GetValue(
	out SbVec2s size,
	out int nc,
	out SoSFImageDataTypes dataType
)

Parameters

size
Type: OIV.InventorSbVec2s
nc
Type: SystemInt32
dataType
Type: OIV.Inventor.FieldsSoSFImageDataTypes

Return Value

Type: SbNativeArrayByte
Remarks

The size and nc arguments are filled in with the dimensions of the image and the number of components in the image. The number of bytes in the array returned will be size[0]*size[1]*nc*sizeof(<dataType>)*nc.

See Also