Wednesday, April 1, 2015

Get website screenshot using GrabzIt - PHP Snippet

Get website screenshot using GrabzIt - PHP Snippet
Simple php snippet that help you to get screenshot of your website quickly. You can get your application key and secret by registering at GrabzIt.

include("GrabzItClient.class.php"); 

$grabzIt = new GrabzItClient("APPLICATION KEY", "APPLICATION SECRET");
$grabzIt->SetImageOptions("http://www.freetemplate.website/");
$grabzIt->SaveTo("images/myscreenshot.jpg");
Disqus Comments