agopaul/thumbalizr

Simple wrapper for thumbalizr.com

Maintainers

Package info

github.com/agopaul/thumbalizr

pkg:composer/agopaul/thumbalizr

Statistics

Installs: 22

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is not auto-updated.

Last update: 2026-03-15 01:31:34 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");