Extract8IRaw Data Member Function

Extracts a channel of the source <Image> object to 8I ( raw <uint8> ) and stores the results in the destination array. This function is not type safe. Ex: if you extract a set of bytes from a <Float32Array>, you can't necessarily use them as colors. Note that the bytes can be re-packed into a floating point texture with no problem.

Prototype

int32 Extract8IRaw( Image p_oSource, int32 p_eChannel, Uint8Array p_abDest )

Parameters

Parameter Type Parameter Name Documentation
<Image>p_oSourceA pointer to the source <Image> object.
int32p_eChannelThe channel of the <Image> to extract. Refers to the ImageChannel enumeration. Please see TYPE_SERVICE_ENUMERATION_UTIL.SSL in the application scripts folder for more information.
<Uint8Array>p_abDestA pointer to the destination array. You can pass in a non-nullptr, empty array, and this function will allocate storage ( once ). Allocation assumes that you wish to allocate enough storage to store all the data in the source <Image> object.

Examples

Copy Text To Clipboard

None published. Please look for an example in the Scenome Scripting Language code base.