getoxs/wkhtmltopdf-buster-amd64

Convert html to pdf using webkit (qtwebkit). Static linked linux binary for Debian buster amd64 systems.

0.12.6.1 2021-02-23 15:39 UTC

This package is auto-updated.

Last update: 2024-03-23 22:54:32 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'),
    ...