kartik-v / yii2-mpdf

A Yii2 wrapper component for the mPDF library which generates PDF files from UTF-8 encoded HTML.
http://demos.krajee.com/mpdf
Other
163 stars 149 forks source link

Font size not increasing. #54

Closed raksrivastava closed 7 years ago

raksrivastava commented 7 years ago

When i am generating pdf, font style is too small, we can not read in that font size. My code is below. $pdf = new Pdf([ 'mode' => Pdf::MODE_CORE, 'format' => Pdf::FORMAT_A4, 'orientation' => Pdf::ORIENT_PORTRAIT, 'destination' => Pdf::DEST_BROWSER, // 'cssFile' => '@web/css/kv-mpdf-bootstrap.min.css', // 'cssInline' => '.table{font-size:28px}', ]);

        $mpdf = $pdf->api;

$mpdf->WriteHtml($content); return $mpdf->Output('test.pdf', 'D');

raksrivastava commented 7 years ago

It is working now by adding below lines. $mpdf->keep_table_proportions = false; $mpdf->SetDefaultFontSize(9);