blaater6/wkhtmltopdf-aarch64

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

0.12.4.1 2022-07-15 11:29 UTC

This package is auto-updated.

Last update: 2025-08-15 18:22:55 UTC


README

!--- aarch64 build working for Amazon Linux ---!

This repository contains the static compiled binaries from the wkhtmltopdf project. More about the functionality of wkhtmltopdf can be found there.

Installation

Hint: The version of the binary is equal to the git tag. To install the latest version, use '0.12.4'.

Packagist

This package can be found on Packagist and installed with Composer.

Require the package for aarch64 with:

php composer.phar require blaater6/wkhtmltopdf-aarch64 "0.12.4"

The binary will then be located at:

vendor/blaater6/wkhtmltopdf-aarch64/bin/wkhtmltopdf-aarch64

Also a symlink will be created in your configured bin/ folder, for example:

vendor/bin/wkhtmltopdf-aarch64

Usage

You can use the path constant to easily locate the binary in the PHP codebase:

$path = \blaater6\WKHTMLToPDF\WKHTMLToPDF::PATH;

For realpath use following script

$realpath = realpath(\blaater6\WKHTMLToPDF\WKHTMLToPDF::PATH);