ウェブサイトのスクリーンショットとサムネイル抽出

「Website Screenshots&Thumbnails Extractorは、サイトのスクリーンショットとサムネイルを抽出するためのオープンソースWindowsアプリケーションです。 .NET Framework 3.5が必要です。

主な機能:

プログラムの外観:

画像

.NETアプリケーションでWebScreenshotExtractorクラスを使用することもできます。

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


Codeplexのソースコードを使用してプログラムをダウンロードする

ブログ記事

PSプログラムの開発(同様のWebサービスの作成、機能の最終化と改善)に参加したい場合は、コメントを書いてください。

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


All Articles