acid-solutions/laravel-phantom

There is no license information available for the latest version (v1.0) of this package.

v1.0 2018-05-22 11:07 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:31:29 UTC


README

$pngGenerator = new LaravelPhantom();

$capture = $pngGenerator->open(url) ->filetype('png') ->size(1200,675) ->capture();

if ( $capture->success() ) { return Response::download($capture->file()); } else { return $capture->error(); }

$pdfGenerator = new LaravelPhantom();