[]
Adds a new Picture to the end of the run.
public Picture AddPicture()
Public Function AddPicture() As Picture
| Type | Description |
|---|---|
| Picture | The added Picture. |
Adds a new Picture to the end of the run.
public Picture AddPicture(byte[] imageBytes, string contentType)
Public Function AddPicture(imageBytes As Byte(), contentType As String) As Picture
| Type | Name | Description |
|---|---|---|
| byte[] | imageBytes | Image data representing the picture. |
| string | contentType | The content type of the image data. |
| Type | Description |
|---|---|
| Picture | The added Picture. |
Adds a new Picture to the end of the run.
public Picture AddPicture(Image image)
Public Function AddPicture(image As Image) As Picture
| Type | Name | Description |
|---|---|---|
| Image | image |
| Type | Description |
|---|---|
| Picture | The added Picture. The size of the picture is set to the size of the source image. |
Adds a new Picture to the end of the run.
public Picture AddPicture(byte[] imageBytes, string contentType, float width, float height)
Public Function AddPicture(imageBytes As Byte(), contentType As String, width As Single, height As Single) As Picture
| Type | Name | Description |
|---|---|---|
| byte[] | imageBytes | Image data representing the picture. |
| string | contentType | The content type of the image data. |
| float | width | The picture's width, in points. |
| float | height | The picture's height, in points. |
| Type | Description |
|---|---|
| Picture | The added Picture. |