Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 398 Bytes

phpwkhtmltopdf.md

File metadata and controls

25 lines (21 loc) · 398 Bytes

wkhtmltopdf

Debian

Install system packages

RUN apt-get update && \
    apt-get \
        install -y \
            wkhtmltopdf \
            xvfb && \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

Mandatory confiugration for PHP wrapper command

$pdf = new Pdf([
    ...
    'commandOptions' => [
        'enableXvfb' => true,
    ]
]);