i installed mPDF 6.0 via zip file (not composer), put a font into the ttfonts folder and added the file in config_fonts.php like this:
"eurostyle" => array( /* Custom */
'R' => "eurostyle-normal.ttf"
)
Now i tried adding the font to my mPDF object like this:
$mpdf = new mPDF('c', 'A4-L');
$mpdf -> SetFont('eurostyle');
but nothing changes. There is no error message, the output PDF simpy stays the same.
Does anybody know why?