You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Guillaume Bourgeois 40bfec002b Communiquer : fonts 5 vuotta sitten
..
classes Redimensionnement des photos lors de l'upload 7 vuotta sitten
collations Ajout de "MPDF" à l'index 8 vuotta sitten
font Ajout de "MPDF" à l'index 8 vuotta sitten
graph_cache Ajout de "MPDF" à l'index 8 vuotta sitten
iccprofiles Ajout de "MPDF" à l'index 8 vuotta sitten
includes Ajout de "MPDF" à l'index 8 vuotta sitten
patterns Ajout de "MPDF" à l'index 8 vuotta sitten
qrcode Ajout de "MPDF" à l'index 8 vuotta sitten
tmp Ajout de "MPDF" à l'index 8 vuotta sitten
ttfontdata Ajout de "MPDF" à l'index 8 vuotta sitten
ttfonts Ajout de "MPDF" à l'index 8 vuotta sitten
.gitignore Redimensionnement des photos lors de l'upload 7 vuotta sitten
.travis.yml Ajout de "MPDF" à l'index 8 vuotta sitten
CHANGELOG.txt Ajout de "MPDF" à l'index 8 vuotta sitten
CREDITS.txt Ajout de "MPDF" à l'index 8 vuotta sitten
LICENSE.txt Ajout de "MPDF" à l'index 8 vuotta sitten
MpdfException.php Ajout de "MPDF" à l'index 8 vuotta sitten
README.md Ajout de "MPDF" à l'index 8 vuotta sitten
Tag.php Ajout de "MPDF" à l'index 8 vuotta sitten
composer.json Ajout de "MPDF" à l'index 8 vuotta sitten
compress.php Ajout de "MPDF" à l'index 8 vuotta sitten
config.php Ajout de "MPDF" à l'index 8 vuotta sitten
config_fonts-distr-without-OTL.php Ajout de "MPDF" à l'index 8 vuotta sitten
config_fonts.php Communiquer : fonts 5 vuotta sitten
config_lang2fonts.php Ajout de "MPDF" à l'index 8 vuotta sitten
config_script2lang.php Ajout de "MPDF" à l'index 8 vuotta sitten
graph.php Ajout de "MPDF" à l'index 8 vuotta sitten
lang2fonts.css Ajout de "MPDF" à l'index 8 vuotta sitten
mpdf.css Ajout de "MPDF" à l'index 8 vuotta sitten
mpdf.php Ajout de "MPDF" à l'index 8 vuotta sitten
phpunit.xml Ajout de "MPDF" à l'index 8 vuotta sitten
progbar.css Ajout de "MPDF" à l'index 8 vuotta sitten

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.