Converts the HTML string read from the specified HTML stream to PDF using a base URL to resolve the external resources and returns the rendered PDF document as an array of bytes. The urlBase parameter allows the converter to determine the full URLs from relative URLs for images and CSS files appearing in the htmlStream parameter. Because this method does not specify the full URL of the document referenced by the internal links, the urlBase will be used by default. To make sure the the external resources referenced by relative URLs and the internal links with anchors are correctly resolved by the converter, the GetPdfBytesFromHtmlStream(Stream, Encoding, String, String) method with the urlBase and internalLinksDocUrl additional parameters can be used.

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

Syntax

C#
public byte[] GetPdfBytesFromHtmlStream(
	Stream htmlStream,
	Encoding streamEncoding,
	string urlBase
)
Visual Basic
Public Function GetPdfBytesFromHtmlStream ( 
	htmlStream As Stream,
	streamEncoding As Encoding,
	urlBase As String
) As Byte()
Visual C++
public:
array<unsigned char>^ GetPdfBytesFromHtmlStream(
	Stream^ htmlStream, 
	Encoding^ streamEncoding, 
	String^ urlBase
)

Parameters

htmlStream
Type: System.IO..::..Stream
The HTML stream containing the HTML string to be converted to PDF.
streamEncoding
Type: System.Text..::..Encoding
The encoding of the string read from the HTML stream.
urlBase
Type: System..::..String
The urlBase parameter allows the converter to determine the full URLs from relative URLs for images and CSS files appearing in the HTML stream.

Return Value

Type: array<Byte>[]()[][]
An array of bytes containing the binary representation of the PDF document.

See Also