我试图使用Zend \条码打印命名几个条形码。
问题是阅读手册,我不能打印超过一个条形码。
条形码之前,我不能打印回音了。
如何打印条码数和文字在一起吗?
我正在使用的代码是类似于此:
use Zend\Barcode\Barcode;
$barcodeOptions = array('text' => '123456');
$rendererOptions = array();
Barcode::render(
'code39', 'image', $barcodeOptions, $rendererOptions
);
$barcodeOptions = array('text' => '654321');
Barcode::render(
'code39', 'image', $barcodeOptions, $rendererOptions
);