I would like to create a function in C# that takes a specific webpage and coverts it to a JPG image from within ASP.NET. I don't want to do this via a third party or thumbnail service as I need the full image. I assume I would need to somehow leverage the webbrowser control from within ASP.NET but I just can't see where to get started. Does anyone have examples?
|
|
Ok, this was rather easy when I combined several different solutions: These solutions gave me a thread-safe way to use the WebBrowser from ASP.NET: http://www.beansoftware.com/ASP.NET-Tutorials/Get-Web-Site-Thumbnail-Image.aspx This solution gave me a way to convert BMP to JPG: http://stackoverflow.com/questions/41665/bmp-to-jpg-png-in-c I simply adapted the code and put the following into a .cs:
And can call it as follows:
It works with both a file and a stream. Make sure you add a reference to System.Windows.Forms to your ASP.NET project. I hope this helps. UPDATE: I've updated the code to include the ability to capture the full page and not require any special settings to capture only a part of it. |
|||||||||||
|
|
There is a good article by Peter Bromberg on this subject here. His solution seems to do what you need... |
|||
|
|
|
You could use WatiN to open a new browser, then capture the screen and crop it appropriately. |
||||
|
|
|
The solution is perfect, just needs a fixation in the line which sets the WIDTH of the image. For pages with a LARGE HEIGHT, it does not set the WIDTH appropriately:
And for adding a reference to System.Windows.Forms, you should do it in .NET-tab of ADD REFERENCE instead of COM -tab. |
|||
|
|
