Unknown 1cf8679705 Miscellaneous fixes %!s(int64=7) %!d(string=hai) anos
..
.github 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
classes 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
collations 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
data 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
examples 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
font 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
graph_cache 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
iccprofiles 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
includes 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
patterns 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
qrcode 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
src 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
tests 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
tmp 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
ttfontdata 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
ttfonts 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
utils 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
vendor 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
.travis.yml 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
CHANGELOG.md 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
CHANGELOG.txt 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
CREDITS.txt 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
LICENSE.txt 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
MpdfException.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
README.md 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
Tag.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
canvas-download.php 1cf8679705 Miscellaneous fixes %!s(int64=7) %!d(string=hai) anos
canvas-pdf.css 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
canvas-save.php 1cf8679705 Miscellaneous fixes %!s(int64=7) %!d(string=hai) anos
composer.json 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
composer.lock 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
compress.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
config.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
config_fonts-distr-without-OTL.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
config_fonts.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
config_lang2fonts.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
config_script2lang.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
graph.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
lang2fonts.css 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
makepdf.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
mpdf.css 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
mpdf.php 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
phpunit.xml 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos
progbar.css 4f489045cc PDF categories and style %!s(int64=7) %!d(string=hai) anos

README.md

mPDF is a PHP class which generates PDF files from UTF-8 encoded HTML. It is based on FPDF and HTML2FPDF (see CREDITS), with a number of enhancements. mPDF was written by Ian Back and is released under the GNU GPL v2 licence.

Build Status

Installation

Preferred installation method is via composer and its packagist package mpdf/mpdf.

Manual installation

  • Download the .zip release file and unzip it
  • Create a folder e.g. /mpdf on your server
  • Upload all of the files to the server, maintaining the folders as they are
  • Ensure that you have write permissions set (CHMOD 6xx or 7xx) for the following folders:

    /ttfontdata/ - used to cache font data; improves performance a lot

    /tmp/ - used for some images and ProgressBar

    /graph_cache/ - if you are using JpGraph in conjunction with mPDF

To test the installation, point your browser to the basic example file:

[path_to_mpdf_folder]/mpdf/examples/example01_basic.php

If you wish to define a different folder for temporary files rather than /tmp/ see the note on Folder for temporary files in the section on Installation & Setup in the manual.

If you have problems, please read the section on troubleshooting in the manual.

Online manual

Online manual is available at https://mpdf.github.io/.

Unit Testing

Unit testing for mPDF is done using PHPUnit.

To get started, run composer install from the command line while in the mPDF root directory (you'll need composer installed first).

To execute tests, run vendor/bin/phpunit from the command line while in the mPDF root directory.

Any assistance writing unit tests for mPDF is greatly appreciated. If you'd like to help, please note that any PHP file located in the /tests/ directory will be autoloaded when unit testing.