agopaul / thumbalizr
Simple wrapper for thumbalizr.com
dev-master
2015-04-28 07:42 UTC
Requires
- php: >=5.5
- zendframework/zend-http: 2.3
This package is not auto-updated.
Last update: 2025-03-29 20:37:07 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");