kartik-v/yii2-mpdf A Yii2 wrapper component for the mPDF library which generates PDF files from UTF-8 encoded HTML.

extensioncomponentpdfmpdfutf8html

Krajee Logo
yii2-mpdf Donate

Stable Version Unstable Version License Total Downloads Monthly Downloads Daily Downloads

The yii2-mpdf extension is a Yii2 wrapper component for the mPDF library with enhancements. The mPDF library offers ability to generate PDF files from UTF-8 encoded HTML. This library is based on FPDF and HTML2FPDF, with a number of enhancements. The key features in the library are to be able to generate PDF files 'on-the-fly' from HTML content, handling different languages. Refer the documentation manual or the upstream mpdf site for further details and understanding of the library. The yii2-mpdf extension offers an easy way to integrate and use the mPDF library within your Yii application with subtle enhancements. The key features offerred with this release are:

  • Setup pdf component globally in your yii application configuration.
  • Setup mPDF properties or call mPDF methods easily using simple array configuration.
  • Enhances extension to setup your own custom CSS file for rendering the formatted HTML content.
  • Extension has a built-in version of bootstrap.css (v3.3.0 modified for mPDF) to be applied by default. This will allow you to generate PDF content from bootstrap markup HTML easily.
  • Offers easy way to prepend inline CSS in addition to your own CSS file.
  • Offers easy to use object oriented methods to render complex PDF.
  • Easy use of the extension like any Yii widget by using the render method with minimal configuration.
  • The extension uses the latest development version (v6.0beta) of the mPDF library. It uses the composer repository kartik-v/mpdf on packagist as a source for this latest version. mPDF 6.0 can utilise OpenType layout tables to display complex scripts. This release (v6.0) contains fonts (open source) to cover almost every imaginable script / language. Includes support for Arabic or Indic scripts (as well as Khmer, Lao, Myanmar etc.). It also is expected to improve the display of Thai, Vietnamese and Hebrew. It also includes additional fonts for Chinese, Japanese, and Korean.
  • Inbuilt integration with yii2-grid extension that allows you to export grid as PDF and even generate advanced PDF reports.

Demo

Read the detailed documentation and usage of the extension.

Installation

The preferred way to install this extension is through composer.

Note: Check the composer.json for this extension's requirements and dependencies. Read this web tip /wiki on setting the minimum-stability settings for your application's composer.json.

Either run

$ php composer.phar require kartik-v/yii2-mpdf "dev-master"

or add

"kartik-v/yii2-mpdf": "dev-master"

to the require section of your composer.json file.

Usage

Widget Like Usage

The component can be used straightforward in a manner similar to any widget to render your HTML content as PDF. For example, you can call the component simply like below in your controller action:

use kartik\mpdf\Pdf;

public function actionReport() {
    // get your HTML raw content without any layouts or scripts
    $content = $this->renderPartial('_reportView');

    // setup kartik\mpdf\Pdf component
    $pdf = new Pdf([
        // set to use core fonts only
        'mode' => Pdf::MODE_CORE, 
        // A4 paper format
        'format' => Pdf::FORMAT_A4, 
        // portrait orientation
        'orientation' => Pdf::ORIENT_PORTRAIT, 
        // stream to browser inline
        'destination' => Pdf::DEST_BROWSER, 
        // your html content input
        'content' => $content,  
        // format content from your own css file if needed or use the
        // enhanced bootstrap css built by Krajee for mPDF formatting 
        'cssFile' => '@vendor/kartik-v/yii2-mpdf/src/assets/kv-mpdf-bootstrap.min.css',
        // any css to be embedded if required
        'cssInline' => '.kv-heading-1{font-size:18px}', 
         // set mPDF properties on the fly
        'options' => ['title' => 'Krajee Report Title'],
         // call mPDF methods on the fly
        'methods' => [ 
            'SetHeader'=>['Krajee Report Header'], 
            'SetFooter'=>['{PAGENO}'],
        ]
    ]);

    // return the pdf output as per the destination setting
    return $pdf->render(); 
}

Global Component

You can also setup the widget as a global component for use across your application with defaults preset. For example, setup the following in the components section of your Yii application configuration file:

use kartik\mpdf\Pdf;
// ...
'components' => [
    // setup Krajee Pdf component
    'pdf' => [
        'class' => Pdf::classname(),
        'format' => Pdf::FORMAT_A4,
        'orientation' => Pdf::ORIENT_PORTRAIT,
        'destination' => Pdf::DEST_BROWSER,
        // refer settings section for all configuration options
    ]
]

Once you have setup the component, you can refer it across your application easily:

$pdf = Yii::$app->pdf;
$pdf->content = $htmlContent;
return $pdf->render();

For other usage and details, read the detailed documentation.

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute]. contributors.svg?width=890&button=false

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

individuals.svg?width=890

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

avatar.svg avatar.svg avatar.svg avatar.svg avatar.svg avatar.svg avatar.svg avatar.svg avatar.svg avatar.svg

License

yii2-mpdf is released under the BSD-3-Clause License. See the bundled LICENSE.md for details.

Changelog

Change Log: yii2-mpdf

Version 1.0.7

Date: 17-Aug-2021

  • (enh #121): BS3 cssFile path corrected in documentation.
  • (enh #120): Default value must be empty array.
  • (enh #111): Update PHP Doc to mention cssFile can be an array or `string.

Version 1.0.6

Date: 14-Apr-2020

  • (enh #106): Fix getCss function.
  • (enh #92, #104, #105): Enhancements for MPDF v8.0.
  • Update README.
  • (enh #89): Fix README.md & throw InvalidConfigException for invalid CSS config.

Version 1.0.5

Date: 13-Oct-2018

  • Correct methods parsing in output.

Version 1.0.4

Date: 09-Oct-2018

  • (enh #77, #85): More correct response headers.

Version 1.0.3

Date: 04-Oct-2018

  • Add .gitattributes.
  • Move all source code to src directory.
  • (bug #84): Fix bug with $this->buffer.
  • (enh #77): Correct headers already sent for "Download" & "Browser" destinations.
  • (bug #60): Correct missing Mpdf::init constructor params.

Version 1.0.2

Date: 22-Jun-2017

  • (bug #59): Correct Mpdf constant parsing.
  • (enh #57): Temp file cleanup error due to wrong paths.
  • (enh #45, #51): Updates dependency to use latest mPdf 7.x development branch.

Version 1.0.1

Date: 14-Jan-2017

  • Add github contribution and issue/PR logging templates.
  • Add branch alias for dev-master latest release.
  • Update mpdf source to use repo https://github.com/mpdf/mpdf.
  • (enh #14): Initialize with default mPDF configuration options.
  • (enh #13): Default mode setting for Asian Languages via Pdf::MODE_ASIAN.
  • (enh #12): New tempPath property to allow setting temporary folder for mpdf font data.

Version 1.0.0

Date: 03-Nov-2014

  • Initial release.
  • Set release to stable.

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



v1.0.6 is the latest of 7 releases



BSD-3-Clause license
Stats
161 github stars & 151 github forks
2763 downloads in the last day
62333 downloads in the last 30 days
3936523 total downloads