웹 캡처 및 변환 도구

웹 응용 프로그램이 아닌 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);