Pdf generation extension in yii not support style sheet? I want to generate a pdf doc with a template design. How can i access style sheet for that template in yii?? I am using mpdf extension. please help me
I include the file name as
<link rel="stylesheet" type="text/css" href="<?php// echo Yii::app()->request->baseUrl; ?>/css/style.css" media="screen, projection" /> in pdf generated page but its not working so am included a line of code in its controller like:
$stylesheet = file_get_contents(Yii::getPathOfAlias('webroot.css') . '/style.css');
$mPDF1->WriteHTML($stylesheet, 1);
but pdf generate without any style... Can anyone help me??
or how can i pass style sheet as a parameter in controller
I include the file name as
<link rel="stylesheet" type="text/css" href="<?php// echo Yii::app()->request->baseUrl; ?>/css/style.css" media="screen, projection" /> in pdf generated page but its not working so am included a line of code in its controller like:
$stylesheet = file_get_contents(Yii::getPathOfAlias('webroot.css') . '/style.css');
$mPDF1->WriteHTML($stylesheet, 1);
but pdf generate without any style... Can anyone help me??
or how can i pass style sheet as a parameter in controller