📜 ⬆️ ⬇️

Website Screenshots & Thumbnails Extractor

“Website Screenshots & Thumbnails Extractor is an open source Windows application for extracting screenshots and thumbnails of sites. Work requires .NET Framework 3.5.

Key features:

Appearance of the program:

image
')
You can also use the WebScreenshotExtractor class in your .NET applications:

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();


Download source code on codeplex

Article from the blog

PS If you have a desire to join the development of the program (creating a similar web service, refinement and improvement of functionality) - write in the comments.

Source: https://habr.com/ru/post/68170/


All Articles