Image3D Constructors

Overloads

Image3D(Byte[], Single, Single, Single, Single)Returns an Image3D of the correct type for the given byte array data.
Image3D(Stream, Single, Single, Single, Single)Returns an Image3D of the correct type for the given stream data.
Image3D(String, Single, Single, Single, Single)Returns an Image3D of the correct type for the given physical file path.

Image3D(Byte[], Single, Single, Single, Single)

Returns an Image3D of the correct type for the given byte array data.

public Image3D(Byte[] data, float x, float y, float width, float height)
Public Sub New (data As Byte(), x As Single, y As Single, width As Single, height As Single)

Parameters

data
Byte[]

Byte array containing the 3D image data.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

width
Single

Width of the 3D image.

height
Single

Height of the 3D image.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Image3D(Stream, Single, Single, Single, Single)

Returns an Image3D of the correct type for the given stream data.

public Image3D(Stream stream, float x, float y, float width, float height)
Public Sub New (stream As Stream, x As Single, y As Single, width As Single, height As Single)

Parameters

stream
Stream

Stream object containing the 3D image data.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

width
Single

Width of the 3D image.

height
Single

Height of the 3D image.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

Image3D(String, Single, Single, Single, Single)

Returns an Image3D of the correct type for the given physical file path.

public Image3D(string filePath, float x, float y, float width, float height)
Public Sub New (filePath As String, x As Single, y As Single, width As Single, height As Single)

Parameters

filePath
String

Physical file path of the 3D image.

x
Single

X coordinate of the 3D image.

y
Single

Y coordinate of the 3D image.

width
Single

Width of the 3D image.

height
Single

Height of the 3D image.

Licensing Info

This constructor is a full DynamicPDF Core Suite feature. One of the following is required for non-evaluation usage:

See Also

Image3D
ceTe.DynamicPDF.PageElements

In this topic