I want to Render HTML Code to an Image with C#.
Can I do this without taking a snapshot from a URL
if i have:
string s = "<html>..</html>";
can i convert it to image or Bitmap Object
I want to Render HTML Code to an Image with C#.
Can I do this without taking a snapshot from a URL
if i have:
string s = "<html>..</html>";
can i convert it to image or Bitmap Object
Load the HTML to a WebControl, then create a screen shot... simple.
You can convert your code into a byte-array and then will be able to convert the byte-array to a bitmap object.