$image_name = str_pad($poem_id, 3, '0', STR_PAD_LEFT).uniqid('poem_page_') . '_' . date('Y_m_d-H_i_s', time()); $pdf_path =$image_name.".pdf"; $path =Yii::getAlias('@UploadPath/uploads/poem_page/pdf/all/').$image_name.".pdf"; $content = $this->renderPartial('_poem_page_all',["pages"=>$all]); $pdf = new Pdf([ 'mode' => Pdf::MODE_UTF8, // A4 paper format 'format' => array(210, 364), // portrait orientation 'orientation' => Pdf::ORIENT_PORTRAIT, // stream to browser inline 'destination' => Pdf::DEST_FILE, // 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' => '@frontend/web/css/poem.css', // any css to be embedded if required // 'cssInline' => '.bd{border:1.5px solid; text-align: center;} .ar{text-align:right} .imgbd{border:1px solid}', // set mPDF properties on the fly // 'options' => ['title' => 'Preview Report Case: '], // call mPDF methods on the fly /* 'methods' => [ 'SetHeader'=>['{PAGENO}'], 'SetFooter'=>['pdf Generated on '.date('Y-m-d')], ]*/ ]); $pdf->marginLeft = 0; $pdf->marginRight=0; $pdf->marginTop=0; $pdf->marginBottom=0; $pdf->marginHeader=0; $pdf->marginFooter=0; $pdf->filename = $path; $pdf->destination = 'F'; // return the pdf output as per the destination setting $pdf->options['fontdata'] = [ 'thcharmonman' => [ 'R' => 'THCharmonman.ttf', ], 'thsarabunnew' => [ 'R' => 'THSarabunNew.ttf', ] ]; $pdf->render();
นำ font ใส่ไปใน vendor/mpdf/ttfonts หากต้องการเปลี่ยน Font ในเอกสาร
อย่าลืม copy โฟลดเดอร์ mpdf ไว้ ใน Vendor
หากมี Error ไฟล์ Mpdf และ FpdiTrait ให้เพิ่ม ใน Vendor/composer/autoload_static.php แล้วเพิ่ม
ใน ฟังก์ชัน public static $prefixLengthsPsr4 = array (...);
's' =>
array (
'setasign\\Fpdi\\' => 14,
),
'M' =>
array (
'Mpdf\\' => 5,
),
ใน ฟังก์ชัน public static $prefixDirsPsr4 = array (...);
'setasign\\Fpdi\\' =>
array (
0 => __DIR__ . '/..' . '/setasign/fpdi/src',
),
'kartik\\mpdf\\' =>
array (
0 => __DIR__ . '/..' . '/kartik-v/yii2-mpdf/src',
),