Click here to Skip to main content
15,881,139 members
Articles / Web Development / ASP.NET

Creating Website Thumbnails in ASP.NET

Rate me:
Please Sign up or sign in to vote.
5.00/5 (3 votes)
19 Oct 2010CPOL2 min read 23.3K   3   6
How to create website thumbnails in ASP.NET

Creating a small thumbnail image of a website can be a useful task. This is particularly the case with sites that are directories of websites. A thumbnail helps give the user some idea about the content of a site that they might click to visit.

Although there are a couple of gotchas, doing this from ASP.NET is fairly straight forward. The process involves creating a WebBrowser control to load and render the website image, and write that image to a bitmap.

The WebBrowser control is an ActiveX control. Normally, you create one of these by placing it on a Windows Form. Here, we'll just create one dynamically without any form. One problem is that this control can only be created in a single-threaded apartment. This is the tricky part of this code. We need to create a new thread, set its apartment state to single-threaded apartment, and then run it. This worker thread will create the control and generate the thumbnail. Listing 1 shows my code for the WebsiteThumbnail class.

C#
using System.Drawing;
using System.Threading;
using System.Web;
using System.Windows.Forms;

namespace SoftCircuits
{
  public class WebsiteThumbnail
  {
    protected string _url;
    protected int _width, _height;
    protected int _thumbWidth, _thumbHeight;
    protected Bitmap _bmp;

    /// <summary>
    /// Generates a website thumbnail for the given URL
    /// </summary>
    /// <param name="url">Address of website from which to generate the
    /// thumbnail</param>
    /// <param name="width">Browser width</param>
    /// <param name="height">Browser height</param>
    /// <param name="thumbWidth">Width of generated thumbnail</param>
    /// <param name="thumbHeight">Height of generated thumbnail</param>
    /// <returns></returns>
    public static Bitmap GetThumbnail(string url, int width, int height,
      int thumbWidth, int thumbHeight)
    {
      WebsiteThumbnail thumbnail = new WebsiteThumbnail(url, width, height,
        thumbWidth, thumbHeight);
      return thumbnail.GetThumbnail();
    }

    /// <summary>
    /// Protected constructor
    /// </summary>
    protected WebsiteThumbnail(string url, int width, int height, int thumbWidth,
      int thumbHeight)
    {
      _url = url;
      _width = width;
      _height = height;
      _thumbWidth = thumbWidth;
      _thumbHeight = thumbHeight;
    }

    /// <summary>
    /// Returns a thumbnail for the current member values
    /// </summary>
    /// <returns>Thumbnail bitmap</returns>
    protected Bitmap GetThumbnail()
    {
      // WebBrowser is an ActiveX control that must be run in a single-threaded
      // apartment so create a thread to create the control and generate the
      // thumbnail
      Thread thread = new Thread(new ThreadStart(GetThumbnailWorker));
      thread.SetApartmentState(ApartmentState.STA);
      thread.Start();
      thread.Join();
      return _bmp;
    }

    /// <summary>
    /// Creates a WebBrowser control to generate the thumbnail image
    /// Must be called from a single-threaded apartment
    /// </summary>
    protected void GetThumbnailWorker()
    {
      using (WebBrowser browser = new WebBrowser())
      {
        browser.ClientSize = new Size(_width, _height);
        browser.ScrollBarsEnabled = false;
        browser.ScriptErrorsSuppressed = true;
        browser.Navigate(_url);
        // Wait for control to load page
        while (browser.ReadyState != WebBrowserReadyState.Complete)
          Application.DoEvents();
        // Render browser content to bitmap
        _bmp = new Bitmap(_thumbWidth, _thumbHeight);
        browser.DrawToBitmap(_bmp, new Rectangle(0, 0, _thumbWidth, _thumbHeight));
      }
    }
  }
}

Listing 1. WebsiteThumbnail Class

Initially, this class required you to create an instance of it and then call the GetThumbnail() method on that instance. However, I changed it to have a single static GetThumbnail() method to simplify its usage. (I've made all the other members protected.)

To generate a thumbnail image, just call WebsiteThumbnail.GetThumbnail(). The first argument is the URL of the website to generate the thumbnail from. Next are the dimensions of the browser window. This affects how large of an area will be included in the image. And, finally, the last two arguments specify the dimensions of the thumbnail. The method returns a bitmap, which you can save to a file or write to a database.

Although there are a number of services on the web for performing this task, it's nice to be able to perform it right within your application. Hopefully, this code will help you out.

NOTE: I have a shared hosting account where this code fails. I have yet to determine exactly what is happening but the entire application just seems to die at the point the worker thread is created. This code works fine on my test computer. As near as I can tell, it is related to a limitation on the shared hosting account. I will report back here if I can further isolate exactly what the issue is.

License

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



Comments and Discussions

 
QuestionPerformance Issue Pin
Member 1214227915-Nov-15 21:08
Member 1214227915-Nov-15 21:08 
GeneralMy vote of 5 Pin
millerbill3-Oct-12 0:30
millerbill3-Oct-12 0:30 
Generalcomment... Pin
emicroxxx18-May-12 21:13
emicroxxx18-May-12 21:13 
QuestionExample how to use it in asp.net webform Pin
Mohammad Owidat26-Oct-10 2:01
Mohammad Owidat26-Oct-10 2:01 
SuggestionRe: Example how to use it in asp.net webform Pin
PaulSpencerChapman30-Oct-12 9:51
PaulSpencerChapman30-Oct-12 9:51 
AnswerRe: Example how to use it in asp.net webform Pin
Jonathan Wood30-Oct-12 9:56
Jonathan Wood30-Oct-12 9:56 

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.