/lib_html2pdf

html2pdf allows the conversion of valid HTML in PDF format, to generate documents

Primary LanguagePHP

Repository was moved to https://gitlab.com/labby/lib_html2pdf

lib_html2pdf

============

Html2Pdf (as a library for Content Management Systems LEPTON CMS)is a HTML to PDF converter written in PHP, and compatible with PHP 5.4 to 7.2.
It allows the conversion of valid HTML in PDF format, to generate documents like invoices, documentation

Requirements

Installation

  • download latest addon.zip installation archive
  • in CMS backend select the file from "Add-ons" -> "Modules" -> "Install module"

First Steps

Go to https://html2pdf.fr/en/download and see what to do

LEPTON_CMS quick test example given

See Html2Pdf at GitHub for details!

Open a new (blank) Code2 section and paste:

$oPDF = lib_html2pdf::getInstance();

use Spipu\Html2Pdf\Html2Pdf;

$html2pdf = new Html2Pdf();
$html2pdf->writeHTML('<h1>HelloWorld LEPTON_CMS</h1>This is my first test');

// See details for the parameters at:
// https://github.com/spipu/html2pdf/blob/master/doc/output.md
$html2pdf->output( LEPTON_PATH.MEDIA_DIRECTORY'/pdf_file_xxxx.pdf', 'F');

echo "file written!";