Image Constructors

Overloads

Image(Byte[], Single, Single, Single?)Initializes a new instance of the Image class.
Image(ImageData, Single, Single)Initializes a new instance of the Image class.
Image(ImageData, Single, Single, Single)Initializes a new instance of the Image class.
Image(Stream, Single, Single, Single)Initializes a new instance of the Image class.
Image(String, Single, Single)Initializes a new instance of the Image class.
Image(String, Single, Single, Single)Initializes a new instance of the Image class.

Image(Byte[], Single, Single, Single?)

Initializes a new instance of the Image class.

public Image(Byte[] imageData, float x, float y, [float? scale = null])
Public Sub New (imageData As Byte(), x As Single, y As Single, Optional scale As Single? = null)

Parameters

imageData
Byte[]

Image data in bytes.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

scale
Single?

The scale to use when rendering the image.

Licensing Info

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

Image(ImageData, Single, Single)

Initializes a new instance of the Image class.

public Image(ImageData imageData, float x, float y)
Public Sub New (imageData As ImageData, x As Single, y As Single)

Parameters

imageData
ImageData

ImageData object containing the image data.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

Licensing Info

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

Image(ImageData, Single, Single, Single)

Initializes a new instance of the Image class.

public Image(ImageData imageData, float x, float y, float scale)
Public Sub New (imageData As ImageData, x As Single, y As Single, scale As Single)

Parameters

imageData
ImageData

ImageData object containing the image data.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

scale
Single

The scale to use when rendering the image.

Licensing Info

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

Image(Stream, Single, Single, Single)

Initializes a new instance of the Image class.

public Image(Stream stream, float x, float y, float scale)
Public Sub New (stream As Stream, x As Single, y As Single, scale As Single)

Parameters

stream
Stream

Stream object containing the image data.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

scale
Single

The scale to use when rendering the image.

Licensing Info

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

Image(String, Single, Single)

Initializes a new instance of the Image class.

public Image(string filePath, float x, float y)
Public Sub New (filePath As String, x As Single, y As Single)

Parameters

filePath
String

Physical file path of the image.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

Licensing Info

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

Image(String, Single, Single, Single)

Initializes a new instance of the Image class.

public Image(string filePath, float x, float y, float scale)
Public Sub New (filePath As String, x As Single, y As Single, scale As Single)

Parameters

filePath
String

Physical file path of the image.

x
Single

X coordinate of the image.

y
Single

Y coordinate of the image.

scale
Single

The scale to use when rendering the image.

Licensing Info

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

See Also

Image
ceTe.DynamicPDF.PageElements

In this topic