Creates an ImageElement object from the specified byte array.

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

Syntax

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

Parameters

binaryContent
Type: array< System..::.Byte >[]()[]
A byte array from which to create the ImageElement object.

Return Value

The ImageElement object this method creates.

See Also