我使用mpdf生成发票。 但条形码不起作用。 我使用字体IDAutomationHC39M作为条形码
我通过以下步骤将IDAutomationHC39M字体集成到mpdf:
1。我将IDAutomationHC39M.ttf上传到mpdf / ttfonts /
2。然后我更新了mpdf / config_fonts.php字体数组
"IDAutomationHC39M" => array(
'R' => "IDAutomationHC39M.ttf"
),
现在查看我的最终代码:
<?php
$html = '
<html><head><style>
body {font-family: IDAutomationHC39M; font-size:30px;}
</style></head>
<body>38329638</body>
</html>';
$mpdf = new mPDF('utf-8', 'A4', '8', '', 10, 10, 22, 22, 10, 20);
$mpdf->WriteHTML($html);
$mpdf->Output();
?>
但它不起作用。
看起来像波纹管图像
But it should like this :