而不是action.class.php中的下面的类型: $ pdf-> write1DBarcode('CODE 39','C39','','','',18,0.4,'','N');
如何让它自定义以便我可以在模板中编写它?
原因是当我必须在一个页面上两次标记相同的条形码时......正常的条形码东西只能在页面中执行一次...请帮助我这个...我很赞成它... :d
答案 0 :(得分:0)
您可以在HTML中编写TCPDF方法,如下所示
<?php
$params = $pdf->serializeTCPDFtagParameters(array('40144399300102444888207482244309', 'C128C', '', '', 0, 0, 0.2, array('position'=>'S', 'border'=>false, 'padding'=>4, 'fgcolor'=>array(0,0,0), 'bgcolor'=>array(255,255,255), 'text'=>false, 'font'=>'helvetica', 'fontsize'=>8, 'stretchtext'=>2), 'N'));
$str='<table cellspacing="0" cellpadding="1" border="0">
<tr>
<td align="left">barcode</td>
</tr>
<tr>
<td align="center" style="padding-left:5px;">';
$str .= '<tcpdf method="write1DBarcode" params="'.$params.'" />';
$str .='</td>
</tr>
</table>';
$pdf->writeHTML($str,true, false,false,false,'left');
$pdf->Output('example_049.pdf', 'I');
?>
有关详细信息,请查看TCPDF example_049.php