Unknown 1940f2e76a Version after GIT clone 7 éve
..
.github 1940f2e76a Version after GIT clone 7 éve
classes 1940f2e76a Version after GIT clone 7 éve
collations 1940f2e76a Version after GIT clone 7 éve
data 1940f2e76a Version after GIT clone 7 éve
examples 1940f2e76a Version after GIT clone 7 éve
font 1940f2e76a Version after GIT clone 7 éve
graph_cache 1940f2e76a Version after GIT clone 7 éve
iccprofiles 1940f2e76a Version after GIT clone 7 éve
includes 1940f2e76a Version after GIT clone 7 éve
patterns 1940f2e76a Version after GIT clone 7 éve
qrcode 1940f2e76a Version after GIT clone 7 éve
src 1940f2e76a Version after GIT clone 7 éve
tests 1940f2e76a Version after GIT clone 7 éve
tmp 1940f2e76a Version after GIT clone 7 éve
ttfontdata 1940f2e76a Version after GIT clone 7 éve
ttfonts 1940f2e76a Version after GIT clone 7 éve
utils 1940f2e76a Version after GIT clone 7 éve
.gitignore 1940f2e76a Version after GIT clone 7 éve
.travis.yml 1940f2e76a Version after GIT clone 7 éve
CHANGELOG.md 1940f2e76a Version after GIT clone 7 éve
CHANGELOG.txt 1940f2e76a Version after GIT clone 7 éve
CREDITS.txt 1940f2e76a Version after GIT clone 7 éve
LICENSE.txt 1940f2e76a Version after GIT clone 7 éve
MpdfException.php 1940f2e76a Version after GIT clone 7 éve
README.md 1940f2e76a Version after GIT clone 7 éve
Tag.php 1940f2e76a Version after GIT clone 7 éve
canvas-pdf-save.php 1940f2e76a Version after GIT clone 7 éve
canvas-pdf.css 1940f2e76a Version after GIT clone 7 éve
canvas-pdf.php 1940f2e76a Version after GIT clone 7 éve
composer.json 1940f2e76a Version after GIT clone 7 éve
compress.php 1940f2e76a Version after GIT clone 7 éve
config.php 1940f2e76a Version after GIT clone 7 éve
config_fonts-distr-without-OTL.php 1940f2e76a Version after GIT clone 7 éve
config_fonts.php 1940f2e76a Version after GIT clone 7 éve
config_lang2fonts.php 1940f2e76a Version after GIT clone 7 éve
config_script2lang.php 1940f2e76a Version after GIT clone 7 éve
graph.php 1940f2e76a Version after GIT clone 7 éve
lang2fonts.css 1940f2e76a Version after GIT clone 7 éve
mpdf.css 1940f2e76a Version after GIT clone 7 éve
mpdf.php 1940f2e76a Version after GIT clone 7 éve
phpunit.xml 1940f2e76a Version after GIT clone 7 éve
progbar.css 1940f2e76a Version after GIT clone 7 éve

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.