| ImgConverterGetImageBytesFromHtmlStream Method (Stream, Encoding, ImageFormat, String) | 
 
            Gets binary format of an image generated from the specified HTML stream in the 
            the specified System.Drawing.Imaging.ImageFormat format. 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. 
            The bytes can be further written in any stream like a disk file or a web response.
            
 
    Namespace: 
   ExpertPdf.HtmlToPdf
    Assembly:
   ephtmltopdf (in ephtmltopdf.dll) Version: 17.0.0
 Syntax
Syntaxpublic byte[] GetImageBytesFromHtmlStream(
	Stream htmlStream,
	Encoding streamEncoding,
	ImageFormat format,
	string urlBase
)
Public Function GetImageBytesFromHtmlStream ( 
	htmlStream As Stream,
	streamEncoding As Encoding,
	format As ImageFormat,
	urlBase As String
) As Byte()
Parameters
- htmlStream
- Type: System.IOStream
 The HTML stream
- streamEncoding
- Type: System.TextEncoding
 The encoding of the HTML stream
- format
- Type: System.Drawing.ImagingImageFormat
 The image format
- urlBase
- Type: SystemString
 The URL base of the page
Return Value
Type: 
ByteThe binary representation of the image as byte[] object
 See Also
See Also