Rank: Advanced Member Groups: Member
Joined: 7/14/2014 Posts: 40
|
The current HtmlToPdf.ConvertHtml() calls all take a string as the first parameter that is supposed to contain the HTML to convert. I am curious as to whether or not this string is internally converted into a Stream and if so, would it be possible/easy/more efficient to add ConvertHtml() calls that take a Steam containing the HTML as the first parameter?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,196
|
Hi,
No. The string are passed directly to the WebKit rendering engine as a single memory block. Stream is not involved in this case.
Thanks!
|