Reputation: 35264
Is it possible to convert a Html Control to an image in C#?
Is there any C# method where I can pass the Html Control object and return an image of that html control?
Is this possible, any suggestions?
Upvotes: 14
Views: 45959
Reputation: 686
Yes. It can be easily done using the html2canvas method. html2canvas is used to take screenshots of the html elements. Yo can do this by simply adding the html div into an html modal and pass the modal id to the jQuery function and call that jQuery function in the button onclick. you can checkout this link to know more about the htm2canvas method
Upvotes: 1
Reputation: 128437
I haven't tried it myself, but something I've been meaning to take a look at that may help you is HTMLRenderer.
Upvotes: 1
Reputation: 6122
You need to create a separate page which is to be converted into image and call it in iframe. Then Try following:
http://articles.sitepoint.com/article/generating-asp-net-images-fly
OR
http://www.guangmingsoft.net/wordpress/convert-html-to-image-without-temporary-files-in-c/
Upvotes: 0
Reputation: 2133
We have used http://iecapt.sourceforge.net/ to convert HTML to image. You can try it out. It is available for FREE.
Upvotes: 14
Reputation: 1742
The control you're describing has, as its output, HTML. That's all it does.
Your problem is that you want to turn a snippet of HTML into an image. Rendering HTML is done by a browser - ASP.NET has basically nothing to do with how HTML is rendered by a client.
Most .NET libraries that do this job (turning HTML into images) use IE to power the conversion. Some of those utilities include:
But the more basic answer to the question is that ASP.NET controls don't render to an image format. You'll have to do an IE screenshot of a page that has only that control (or HTML) on it.
Upvotes: 2
Reputation: 100657
Consider this (untested!) library over at guangmingsoft called htmlsnapshot.
add a reference to the htmlsnap2.dll
There's a sample project there for download.
Here's their sample code, lifted straight from that link:
snap = new CHtmlSnapClass();
snap.Url("www.google.com", "*")
byte[] data = (byte[])snap.GetImageBytes(".jpg");
//byte[] data = (byte[])snap.GetThumbImageBytes(".jpg", 100, 100, 1);
FileStream fs = File.OpenWrite(@"c:\1.jpg");
BinaryWriter br = new BinaryWriter(fs);
br.Write(data);
br.Close();
fs.Close();
Update If you wanted only a particular control, you could write yourself a page whose job is to re-render your target control as the only bits of HTML on the page.
Upvotes: 5