Converts a HTML code to a SVG document and writes the resulted SVG document to an output stream
Namespace: HiQPdfAssembly: HiQPdf (in HiQPdf.dll) Version: 6.0.0.0
Syntax
| C# |
|---|
public void ConvertHtmlToStream(
string html,
string baseUrl,
Stream outputStream
) |
| Visual Basic |
|---|
Public Sub ConvertHtmlToStream (
html As String,
baseUrl As String,
outputStream As Stream
) |
| Visual C++ |
|---|
public:
void ConvertHtmlToStream(
String^ html,
String^ baseUrl,
Stream^ outputStream
) |
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
- outputStream
- Type: System.IO..::..Stream
The output stream where to write the resulted SVG document
See Also