Save a Screenshot of Interesting Websites for Later
Saturday, December 16th, 2006If you happen to visit a lot of sites everyday and when you find something interesting you don’t have time to read it immediately but just want to save it for later.
The solution comes with HtmlCapture ActiveX Control. The following pseudo codes show how to take a snapshot for a URL and save it to local file.
SnapShooter snap;
if (snap.SnapUrl(“http://www.polestarsoft.com”) == HSR_SUCCESS)
{ if(snap.SaveImage(“c:snapshot.png”))
MessageBox(“Snapshot saved.”); }
Â