Converts a HTML string read from a stream to PDF using a base URL and an internal links base URL and saves the rendered PDF document into a stream.
This method is still present in the API to maintain the backward compatibility and it will be replaced
by ConvertHtmlStreamToStream(Stream, Encoding, String, String, Stream) method in the future versions
Namespace: Winnovative
Assembly: wnvhtmltopdf (in wnvhtmltopdf.dll) Version: 17.0.0.0
Syntax
public void SavePdfFromHtmlStreamToStream( Stream htmlStream, Encoding textEncoding, string baseUrl, string internalLinksBaseUrl, Stream outPdfStream )
Parameters
- htmlStream
- Type: System.IOStream
The HTML stream - textEncoding
- Type: System.TextEncoding
The stream text encoding - baseUrl
- Type: SystemString
The base URL - internalLinksBaseUrl
- Type: SystemString
The internal links base URL - outPdfStream
- Type: System.IOStream
The output stream
See Also