Webをキャプチャして変換するツール

Web アプリケーションではなく ASP.NET Windows アプリケーションで GrabzIt を使用する方法はありますか?

はい、使用できます SaveTo メソッド ASP.NETライブラリ。 これを行うには、次のようなことを実行するだけです。

string filepath = 'images/result.jpg';
GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret");
grabzIt.URLToImage('http://www.spacex.com');
grabzIt.SaveTo(filepath);