I have mpdf using this pdf link yii2 installer . This does not work.
My action:
public function actionReport() {
$content = '<html><head></head><body><h1 class="kv-heading-1">hello</h1></body></html>';
$pdf = new Pdf([
'mode' => Pdf::MODE_CORE,
'format' => Pdf::FORMAT_A4,
'orientation' => Pdf::ORIENT_PORTRAIT,
'destination' => Pdf::DEST_BROWSER,
'content' => $content,
'cssInline' => '.kv-heading-1{font-size:18px}',
'options' => ['title' => 'Krajee Report Title'],
'methods' => [
'SetHeader'=>['Krajee Report Header'],
'SetFooter'=>['{PAGENO}'],
]
]);
return $pdf->render();
}
Output:

What do I need to do for PDF?
source
share