如何使用CodeIgniter打印条形码图像?
我是否必须制作一个定制库或帮助器来生成条形码图像?有谁知道可以在CodeIgniter中生成条形码图像的库或助手吗?
发布于 2011-11-05 02:19:14
CodeIgniter论坛上的This thread建议使用Zend Barcode class。从那个线程中:
function barcode()
{
$this->load->library('zend');
$this->zend->load('Zend/Barcode');
Zend_Barcode::render('code39', 'image', array('text' => 'CodeIgniter Rocks'), array());
} https://stackoverflow.com/questions/8013949
复制相似问题