Download the PHP package mypdf/mpdf without Composer
On this page you can find all versions of the php package mypdf/mpdf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor mypdf
Package mpdf
Short Description A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support
License GPL-2.0
Homepage https://github.com/dahuicyh/mpdf.git
Package mpdf
Short Description A PHP class to generate PDF files from HTML with Unicode/UTF-8 and CJK support
License GPL-2.0
Homepage https://github.com/dahuicyh/mpdf.git
Please rate this library. Is it a good library?
Informations about the package mpdf
mPDF is a PHP class which generates PDF files from UTF-8 encoded HTML. It is based on FPDF
$mPdf = new mPDF('UTF-8', 'A4', 14, '', 10, 10, 15, 1); $mPdf->SetDisplayMode('real'); $mPdf->autoScriptToLang = true; $mPdf->autoLangToFont = true; $mPdf->WriteHTML($html); if ($logo) { $mPdf->Image($logo, 130, 135, 41, 27); } if ($name) { $mPdf->Image($name, 63, 138, 20, 8); } if (!$pdfName) { $pdfName = self::AGREEMENT_PATH . rand(1, 1000000) . '.pdf'; } $mPdf->Output($pdfName);
All versions of mpdf with dependencies
PHP Build Version
Package Version
The package mypdf/mpdf contains the following files
Loading the files please wait ....