[]
Gets the list of images on this page.
public IList<PdfImageInfo> GetImages(float dpiX = 72, float dpiY = 72)
Public Function GetImages(Optional dpiX As Single = 72, Optional dpiY As Single = 72) As IList(Of PdfImageInfo)
Type | Name | Description |
---|---|---|
float | dpiX | The horizontal resolution used to calculate the bounds of images on the page. |
float | dpiY | The vertical resolution used to calculate the bounds of images on the page. |
Type | Description |
---|---|
IList<PdfImageInfo> | The list of images on the current page. |
Gets the list of images on this page.
public IList<PdfImageInfo> GetImages(float dpiX, float dpiY, bool ignoreErrors)
Public Function GetImages(dpiX As Single, dpiY As Single, ignoreErrors As Boolean) As IList(Of PdfImageInfo)
Type | Name | Description |
---|---|---|
float | dpiX | The horizontal resolution used to calculate the bounds of images on the page. |
float | dpiY | The vertical resolution used to calculate the bounds of images on the page. |
bool | ignoreErrors | Indicates whether to ignore errors in PDF during processing. |
Type | Description |
---|---|
IList<PdfImageInfo> | The list of images on the current page. |