我有一个在卷标中打印条形码的项目 this. 用tcpdf做这些事情是可能的吗?首先,条形码应放在底部并旋转180°,但我认为不可能使用开始变换旋转条形码并旋转,因为它仅用于图形。所以我试图旋转文本,它的工作,但只在另一页面测试与虚拟数据。如何使用serializeTCPDFtagParameters?
在此代码中实现它foreach($product as $row){
$description = $row['description'];
$barcode = $row['barcode_code'];
$barcode = $pdf->serializeTCPDFtagParameters(array($barcode, 'C128','','',25,10,0.5, array('position'=>'S','border'=>false,'padding'=>0, 'fgcolor'=>array(0,0,0), 'bgcolor'=>array(255,255,255), 'text'=>true, 'font'=>'helvetica','fontsize'=>7, 'stretchtext'=>6), 'N'));
$html .= '
<table width="60mm" height="15mm" cellpadding="3" border="1">
<tr>
<td><tcpdf method="write1DBarcode" params="'.$barcode.'" /></td>
</tr>';
'<tr>
<td> '.$description.'</td>
</tr>';
$html = '</table>';
$item = $item+1;}
$pdf->setFont('helvetica', '','4');
$pdf->writeHTML($html, true,0,true,0);
$pdf->lastPage();
$pdf->output('test.pdf','I');
我应该使用单元格来为每个表格行并排制作标签吗?我会用它来标记珠宝和配饰。还有其他选择吗?
PS。抱歉我的英语很差。