Click here to Skip to main content
15,868,141 members
Articles / Programming Languages / Visual Basic
Article

How To Get A Website Thumbnail in a C# Application Without Creating A Form (console)

Rate me:
Please Sign up or sign in to vote.
4.66/5 (14 votes)
5 Jul 2008CPOL3 min read 170.7K   6   73   36
The article describes how to get a thumbnail of a Website in .NET Framework 2.0+ without launching a fully interactive WinForms application.

UPDATE

I've updated the code and the binary with the great improvements that Piers Lawson suggested in the comments. The app should no longer have problems taking snapshots of some images with JavaScript or just plain random problems. It is also slightly optimized with suggestions from Frank Herget. It looks like he's based a very nice service around it on his site - check it out!

Thanks again for your great support!

Introduction

The article describes a console-like application that loads a Web page, makes a screenshot of it and saves it as a JPG file.

Our beloved sys admin - (we all bow to him and worship his skills) has recently asked if it's possible to write a .NET application to make a thumbnail of a Website. The task is pretty trivial with Windows Forms actually. But with him being the Linux guy and all... I decided to pick up the more challenging part of it being the console app. An interesting use case anyway.

In WinForms, all you really need to do is drop a WebBrowser from your Toolbox on your form and once it's loaded the page call:

C#
Bitmap bitmap = new Bitmap(width, height);
webBrowser1.DrawToBitmap(bitmap, 
    new Rectangle(webBrowser1.Location.X, webBrowser1.Location.Y, 
        webBrowser1.Width, webBrowser1.Height));

Obvious enough. When it gets tricky is when you want to do it in a console application in a way that can take a shot of multitude of Websites provided in a batch file. There is a dirty way of instantiating a whole form, making it show (or not), doing the work and then exiting the WinForms app. This might probably be enough for a quick solution, but I wanted a clean piece of code, so I would actually NOT take pride in something in that tone.

How is it done then...

So we instantiate the Web control in our class constructor...

C#
public WebPageBitmap(string url, int width, int height, bool scrollBarsEnabled)
{
    this.url = url;
    this.width = width;
    this.height = height;
    webBrowser = new WebBrowser();
    webBrowser.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(documentCompletedEventHandler);
    webBrowser.Size = new Size(width, height);
    webBrowser.ScrollBarsEnabled = scrollBarsEnabled;
}

Easy so far and pretty similar to what the regular app would do anyway. The documentCompletedEventHandler is a delegate to tell that it has loaded. (I initially wanted to use that for drawing the bitmap but deferred that to the point where the bitmap is actually fetched after I added the resizing part.) Now comes the interesting case.

The Neat Part

Since the call is asynchronous, a simple webBrowser.Navigate(URL); just won't cut it. We are in a single thread and the browser does not create a separate thread for that. This makes sense by the canonical windows rule: Only the thread that creates a control, accesses the control. We need to somehow allow the control to take the flow of the thread and do its work. Navigate only tells it that it should perform the action and immediately exits. The developer's responsibility then is to know when the control is ready for consumption. Which is the case when the webBrowser.ReadyState progresses to (or returns to) the state of WebBrowserReadyState.Complete.

The Solution

To pass the flow to the app controls, you need to perform Application.DoEvents(); which was a bit of a wild guess when I used it. Surprise, surprise, it works just like it did in other Windows frameworks that I used before.

C#
public void Fetch()
{
    webBrowser.Navigate(url);
        while (webBrowser.ReadyState != WebBrowserReadyState.Complete)
        {
            Application.DoEvents();
        }
}

The effect is a tiny and neat (I hope) app that pulls a Web page from the net and makes a screenshot off of it (with possible rescaling).

You can get the source code or get the app directly. App usage:

GetSiteThumbnail.exe http://www.yoursite.com/ thumbnail.jpg 
  [browser_width(defaults to 800) browser_height (defaults to 600) ] 
  [thumbnail_width thumbnail_height]

Sample:
GetSiteThumbnail.exe http://www.cognifide.com/ cognifide.jpg 1280 1024 640 480

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Poland Poland
Adam Najmanowicz is a Senior Developer at Cognifide Poland.

His previous experience includes Delphi, .Net as well as Java Development.

Currently working on ASP.NET + MSSql Server(Oracle) solutions for enterprises.

Also developing desktop applications for Stardock Systems.

Comments and Discussions

 
GeneralRe: why I just get blank image? Pin
AdamNajmanowicz5-Jul-08 2:09
AdamNajmanowicz5-Jul-08 2:09 
AnswerRe: why I just get blank image? [modified] Pin
oCasper14-Oct-07 11:42
oCasper14-Oct-07 11:42 
GeneralWhy It Does not work with some sites Pin
mhariri27-Nov-06 5:39
mhariri27-Nov-06 5:39 
GeneralAxWebBrowser Vs. WebBrowser (.NET2) events Pin
Assaf Koren23-Nov-06 8:43
Assaf Koren23-Nov-06 8:43 
GeneralRe: AxWebBrowser Vs. WebBrowser (.NET2) events Pin
AdamNajmanowicz28-Nov-06 8:23
AdamNajmanowicz28-Nov-06 8:23 
GeneralGetting it to work in an ASP.NET application [modified] Pin
dB.20-Nov-06 20:51
dB.20-Nov-06 20:51 
GeneralRe: Getting it to work in an ASP.NET application Pin
ligaz25-Nov-06 4:06
ligaz25-Nov-06 4:06 
GeneralRe: Getting it to work in an ASP.NET application Pin
dB.25-Nov-06 5:11
dB.25-Nov-06 5:11 
GeneralRe: Getting it to work in an ASP.NET application Pin
AdamNajmanowicz28-Nov-06 8:19
AdamNajmanowicz28-Nov-06 8:19 
GeneralRe: Getting it to work in an ASP.NET application Pin
chr872-Mar-07 2:19
chr872-Mar-07 2:19 
GeneralRe: Getting it to work in an ASP.NET application Pin
Chris Vann23-Mar-08 10:46
Chris Vann23-Mar-08 10:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.