Gets an array of Image objects from the specified HTML string. The image is tiled to avoid working with very large images in memory. The urlBase parameter allows the converter to determine the full URLs from relative URLs for images and CSS files appearing in the HTML code from htmlString parameter

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public Image[] GetImageTilesFromHtmlString(
	string htmlString,
	string urlBase
)
Visual Basic
Public Function GetImageTilesFromHtmlString ( 
	htmlString As String,
	urlBase As String
) As Image()
Visual C++
public:
array<Image^>^ GetImageTilesFromHtmlString(
	String^ htmlString, 
	String^ urlBase
)

Parameters

htmlString
Type: System..::..String
The HTML string to convert
urlBase
Type: System..::..String
The URL base of the page

Return Value

Type: array<Image>[]()[][]
The rendered Image objects

See Also