Project DescriptionWinForms application for extracting screenshots and thumbnails from the websites.
"Websites Screenshots & Thumbnails Extractor" is a windows-based application written on C# 3.5.
http://twitter.com/msugvnuaIt has the following features:
* extracting screenshots and thumbnails from the selected websites;
* oppurtunity to select size from the list of standard predefined formats;
* oppurtunity to set size manually both for the screenshots and thumbnails;
* automatically saving to the selected ditectory;
* oppurtunity to define saving masks.
How to use:
int width = 1024;
int height = 768;
int thumbWidth = 150;
int thumbHeight = 150;
Uri uri = new Uri("http://microsoft.com/");
WebScreenshotExtractor web = new WebScreenshotExtractor(uri, width, height, thumbWidth, thumbHeight);
web.ScrollingEnabled = false;
web.MakeScreenshot();
// pictureBox, thumbBox - your Image controls
pictureBox.Image = web.GetImage();
thumbBox.Image = web.GetThumbnail();
Software screenshot:

Output images:
microsoft.jpgmicrosoft_thumb.jpgBlog post:
http://msug.vn.ua/blogs/akrakovetsky/archive/2009/01/06/quot-websites-screenshots-amp-thumbnails-extractor-quot-is-released-on-codeplex.aspx