Creates an ImageElement object from the specified byte array and offset.

Namespace:  Neodynamic.SDK
Assembly:  Neodynamic.SDK.ImageDraw (in Neodynamic.SDK.ImageDraw.dll)
Version: 2.0.2000.0 (2.0.2086.0)

Syntax

C#
public static ImageElement FromBinary(
	byte[] binaryContent,
	int binaryContentOffset
)
Visual Basic (Declaration)
Public Shared Function FromBinary ( _
	binaryContent As Byte(), _
	binaryContentOffset As Integer _
) As ImageElement
Visual C++
public:
static ImageElement^ FromBinary(
	array<unsigned char>^ binaryContent, 
	int binaryContentOffset
)

Parameters

binaryContent
Type: array< System..::.Byte >[]()[]
A byte array from which to create the ImageElement object.
binaryContentOffset
Type: System..::.Int32
The number of bytes that must be skipped on the specified byte array.

Return Value

The ImageElement object this method creates.

See Also