PHP method for generating PDF using the MPDF class _ php instance

Source: Internet
Author: User
This article mainly introduces the methods for generating PDF using the MPDF class in PHP. For more information, see the requirements of the company's business. Recently, we need to generate pdf for html static files, I found a lot of files on the Internet for implementation, and the results were not very good. the first use of tcpdf is particularly slow, and the current version has a very troublesome problem-the background images in css cannot be obtained, and a lot of information cannot be solved. finally, we found that mpdf may be able to implement this function, which is more efficient than tcpdf.

Mpdf official: http://www.mpdf1.com/mpdf/download

Download there are instances, you can refer to do a know. Of course, the official website also has an instance, web site: http://mpdf1.com/common/mpdf/examples/

Official documentation: http://mpdf1.com/manual/

<? Php/** function: generate the user diagnosis report PDF file * Creation Time: -- * // phpinfo (); exit; // introduce the MPDF class file set_time_limit (); include '/include/MPDF/mpdf. php '; // instantiate mpdf $ mpdf = new mPDF ('utf-', 'A', '', '',); // set the font, solve Chinese garbled characters $ mpdf-> useAdobeCJK = true; $ mpdf-> SetAutoFont (AUTOFONT_ALL); // obtain the expected static file: html#file_get_contents('template.html '); echo $ html; exit; // set the PDF header content $ header ='
 
 
Header
'; // Set the content of the PDF footer $ footer ='
Footer Page number: {PAGENO}/{nb}
'; // Add the header and footer to the pdf file $ mpdf-> SetHTMLHeader ($ header); $ mpdf-> SetHTMLFooter ($ footer ); // set the pdf display mode $ mpdf-> SetDisplayMode ('fullpage'); // set the pdf size to mm * mm // $ mpdf-> WriteHTML (' '); // Create a pdf file $ mpdf-> WriteHTML ($ html); // Delete the first page of the pdf file (one more page due to setting the pdf size) // $ mpdf-> DeletePages (,); // Output pdf $ mpdf-> Output (); exit;?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.