krewenki / php-docraptor

PHP consumer for the DocRaptor.com API
ISC License
26 stars 9 forks source link

PHP-DocRaptor

PHP-DocRaptor is a simple consumer class for DocRaptor.com You will need a DocRaptor account before you can use the class, as it requires a valid API key.

Usage

$docraptor = new DocRaptor(YOUR_API_KEY);
$docraptor->setDocumentContent('<h1>Hello!</h1>')->setDocumentType('pdf')->setTest(true)->setName('output.pdf');
$file = $docraptor->fetchDocument();

Optionally, the fetchDocument() method takes a filename as an argument. If you provide a filename, the class will attempt to write the returned value to the file you provided.

Options

HTTPS or HTTP

By default, PHP-DocRaptor submits requests over https. You can choose to submit via http, if that's your preference, by passing an argument to the setSecure() method (true for https, false for http):

$docraptor = new DocRaptor(YOUR_API_KEY);
$docraptor->setSecure(false)