Search
Project Description
WinForms application for extracting screenshots and thumbnails from the websites.

"Websites Screenshots & Thumbnails Extractor" is a windows-based application written on C# 3.5.

Follow us on twitter
http://twitter.com/msugvnua

It 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:

ScreenshotsExtractor.PNG

Output images:

microsoft.jpg
microsoft_thumb.jpg

Blog post: http://msug.vn.ua/blogs/akrakovetsky/archive/2009/01/06/quot-websites-screenshots-amp-thumbnails-extractor-quot-is-released-on-codeplex.aspx
Last edited Dec 17 2009 at 4:10 PM by akrakovetsky, version 10
Updating...
© 2006-2012 Microsoft | Get Help | Privacy Statement | Terms of Use | Code of Conduct | Advertise With Us | Version 2012.2.7.18398