将下列错误带在pdf文件中生成1D条条条码图像,同时使用tcpdf模块制作各种条码。
“TCDF EAROR: Error in 1D条条条形形形形形形形形形形形形形形形色色色体”
if (file_exists("data1.txt"))
{
echo("<B>File Exists data1.txt</B>");
$arrText = file("data1.txt");
for ($i=0; $i<count($arrText); $i++)
{
echo("<P>$arrText[$i]</P>");
$pdf->write1DBarcode(" ".chop($arrText[$i])." ", UPCA , , , , 18, 0.4, $style, N );
$pdf->Ln();
}
}
else
{
echo("<B>Cannot find file</B>");
exit;
}