Converts a HTML code to a SVG file

Namespace: HiQPdf
Assembly: HiQPdf (in HiQPdf.dll) Version: 6.0.0.0

Syntax

C#
public void ConvertHtmlToFile(
	string html,
	string baseUrl,
	string outputFile
)
Visual Basic
Public Sub ConvertHtmlToFile ( 
	html As String,
	baseUrl As String,
	outputFile As String
)
Visual C++
public:
void ConvertHtmlToFile(
	String^ html, 
	String^ baseUrl, 
	String^ outputFile
)

Parameters

html
Type: System..::..String
The HTML code to convert
baseUrl
Type: System..::..String
The base URL that can be used to resolve the relative URLs found in the HTML code. It can be null if there are not relative URLs in the HTML code
outputFile
Type: System..::..String
The output SVG file

See Also