我正在尝试在已存在的文档上创建条形码。当我调用方法Code128()时,向我显示以下错误。
调用未定义的方法FPDI :: Code128()
我正在使用的代码如下:
<?php
require_once('fpdf.php');
require_once('code128.php');
require_once('fpdi.php');
$pdf = new FPDI();
$pageCount = $pdf->setSourceFile("doc/file.pdf");
$tplIdx = $pdf->importPage(1);
$datefile = '18/07/2018';
$bc = 'ABCD1234567890';
$pdf->addPage();
$pdf->useTemplate($tplIdx, 10, 10, 200);
$pdf->SetFont('Arial','',10);
$pdf->SetXY(105,79);
$pdf->Cell(90,5,$datefile,0,'L');
$pdf->SetXY(65,50);
$pdf->Code128(10,50,rtrim($bc),55,15);
$pdf->Output();
?>
有什么建议吗?