录医案
 
 
 
 
 
pengda d6c96bee97 vendor 10 months ago
..
classes vendor 10 months ago
collations vendor 10 months ago
font vendor 10 months ago
iccprofiles vendor 10 months ago
includes vendor 10 months ago
patterns vendor 10 months ago
qrcode vendor 10 months ago
ttfonts vendor 10 months ago
.travis.yml vendor 10 months ago
CHANGELOG.txt vendor 10 months ago
CREDITS.txt vendor 10 months ago
LICENSE.txt vendor 10 months ago
MpdfException.php vendor 10 months ago
README.md vendor 10 months ago
Tag.php vendor 10 months ago
composer.json vendor 10 months ago
compress.php vendor 10 months ago
config.php vendor 10 months ago
config_fonts-distr-without-OTL.php vendor 10 months ago
config_fonts.php vendor 10 months ago
config_lang2fonts.php vendor 10 months ago
config_script2lang.php vendor 10 months ago
graph.php vendor 10 months ago
lang2fonts.css vendor 10 months ago
mpdf.css vendor 10 months ago
mpdf.php vendor 10 months ago
phpunit.xml vendor 10 months ago
progbar.css vendor 10 months ago

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.