agopaul/thumbalizr

Simple wrapper for thumbalizr.com

dev-master 2015-04-28 07:42 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:52:54 UTC


README

A simple wrapper for thumbalizr.com, an API for webpage screenshot.

Usage

<?php

$req = new \Thumbalizr\Request();
$req->setUrl("http://google.com");
$req->setWidth(1280);

$wrapper = new \Thumbalizr\Thumbalizr("API_KEY");
$wrapper->capture($req, __DIR__."/test-api.jpg");