I would like you to help me with this issue, I'm dealing for the first time with mPDF which I think it's great, but I want to display the report with the same type of font as my web, which on its documentations explains how to achieve this, but it doesn't still seems to work for me. What I did till now is:
<link
href='http://fonts.googleapis.com/css?family=Open+Sans'
rel='stylesheet' type='text/css'>
.then I add a style sheet file that contains the use of the font
<link rel="stylesheet" href="<?php echo base_url();
?>assets/publicidad/css/reporte.css" type="text/css">
Inside reporte.css that I've already added, I have a definition to use 'Open Sans' font
body { font-family: 'Open Sans', Sans-Serif; } which displays the font as expected.
After it I follow this clear documentation http://mpdf1.com/manual/index.php?tid=453, but till now I'm not getting the desired font displayed in my PDF document what I didn't do till now its the part that says "4. To use the font with specific languages, you need also to edit the configuration file (config_cp.php); let us imagine that Frutiger contains a full set of characters needed for the Thai language:", but I don't think that's the problem because I'm using a default configuration which I put down.
function pdf_create($html, $filename, $stream = TRUE) {
require_once(APPPATH . 'helpers/mpdf/mpdf.php');
$mpdf = new mPDF();
$mpdf->SetAutoFont();
$mpdf->WriteHTML($html);
if ($stream)
{
$mpdf->Output($filename . '.pdf', 'D');
}
else
{
$mpdf->Output('./uploads/temp/' . $filename . '.pdf', 'F');
return './uploads/temp/' . $filename . '.pdf';
}
}
and in my controller I do this.
$html = $this->load->view('publicidad/reporte_x_curso', $data, true);
$this->load->helper('mpdf');
pdf_create($html, 'Reporte_por_cursos', true);
(the above isn't being recognized by the stackverflow editor)
And finally what I did till now that should do all I want following the documentation is:
$this->fontdata = array(
"'Open Sans'" => array(
'R' => 'OpenSans-Regular.ttf'
)
PD: I put the single quotes because I was adding that way in my html document, but I also tried without them, without success. I hope you can help me, thanks in advance.
Firstly, dont use mpdf1.com website, it's closed. Use https://github.com/mpdf/mpdf. There are different codes for Version 6 and 7
(source)
1) upload MyFont.ttf
into /mpdf/ttfonts
2) in /mpdf/config_fonts.php
, inside $this->fontdata
array, add your:
"my_custom_font" => array(
'R' => 'MyFont.ttf', // Regular - REQUIRED
'I' => "MyFont-Oblique.ttf", // Italic - OPTIONAL
'B' => "MyFont-Bold.ttf", // Bold - OPTIONAL
),
3) then, wherever you execute your custom script, use my_custom_fonttt
in css:
<?php
$mpdf=new mPDF();
$texttt= '
<html><head><style>
body { font-family: "my_custom_font"; }
</style></head>
<body>My SAMPLE TEXTTTTT</body>
</html>';
$mpdf->WriteHTML("$texttt");
$mpdf->Output(dirname(__FILE__).'/new_created_file.pdf','F');