getoxs / wkhtmltopdf-buster-amd64
Convert html to pdf using webkit (qtwebkit). Static linked linux binary for Debian buster amd64 systems.
Installs: 31 390
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 170
Open Issues: 0
Replaces
- h4cc/wkhtmltopdf-amd64: 0.12.4
This package is auto-updated.
Last update: 2024-12-24 00:29:41 UTC
README
This repository contains the static compiled binaries from the wkhtmltopdf project. More about the functionality of wkhtmltopdf and wkthmltoimage can be found there.
Installation
Hint: The version of the binary is equal to the git tag.
Packagist
This package can be found on Packagist and installed with Composer.
php composer.phar require getoxs/wkhtmltopdf-buster-amd64
The binary will then be located at: vendor/bin/wkhtmltopdf-buster-amd64
Usage
You can easily use it with laravel-snappy package by configure config\snappy.php
'pdf' => [ 'enabled' => true, 'binary' => env('WKHTML_PDF_BINARY', '../vendor/bin/wkhtmltopdf-buster-amd64'), ...