ctbuh / wkhtmltopdf-api-php-client
There is no license information available for the latest version (v1.0.4) of this package.
v1.0.4
2019-10-01 23:17 UTC
Requires
- ext-curl: *
- ext-json: *
This package is auto-updated.
Last update: 2024-10-29 05:52:59 UTC
README
Installation
composer require ctbuh\wkhtmltopdf-api-php-client
API
convert($bytes, $options = array())
inline($bytes, $options = array(), $filename = 'document.pdf')
download($bytes, $options = array(), $filename = 'document.pdf')
Visual Demo
https://wkhtmltopdf.api.ctbuh.org/
Code Examples
use ctbuh\PdfApi\PdfApi; $pdf = new Pdf(); $pdf->inline("<h1>hello world</h1>"); // script stops $html = view('admin.membership-certificates.document', $data)->render(); $pdf = new PdfApi(); $pdf->inline($html, [ 'orientation' => 'Landscape', 'page-size' => 'letter', 'no-outline' => true ]);
Other PDF stuff
wget https://github.com/coherentgraphics/cpdf-binaries/raw/master/Linux-Intel-64bit/cpdf chmod +x cpdf sudo cp cpdf /usr/local/bin/