I'm trying to print checks with TCPDF class but the MICR fonts doesn't show up when I want to print the check, any reason why?
Thanks
EDIT:
This is How include it
// set font
$fontname = $pdf->addTTFfont('micr65.ttf', 'TrueTypeUnicode', '', 32);
$pdf->SetFont($fontname, '', 14, '', false);
$pdf->SetFont('Helvetica', '', 14, '', false);
$fontname = $pdf->addTTFfont($_SERVER['DOCUMENT_ROOT'].'path/to_font/on_server/micr65.ttf', 'TrueTypeUnicode', '', 32);- StasGrin