Take a screenshot/pdf/html, of a page using Chrome.
$capture = new Capture();
$stout = $capture->screenshot('http://google.com', "destination/screenshot.png");
$stout = $capture->pdf('http://google.com', "destination/screenshot.pdf");
$html = $capture->html('http://google.com');
Configure Chrome location
$capture = new Capture([
'chrome_path' => (Capture::isWindows())? '"C:/Program Files (x86)/Google/Chrome/Application/chrome.exe"': '/usr/bin/google-chrome'
]);