2
$CI=& get_instance();
$CI->load->library('zend');
$CI->zend->load('Zend/Barcode');
$barcode_image_name = "123456789000";
$barcodeOptions = array(
'text' => "123456789000",
'barHeight'=> 100,
'factor'=>4,
);
$file = Zend_Barcode::draw('code128', 'image', $barcodeOptions, array());
$store_image = imagepng($file,FCPATH."uploads/barcodeImage/{$barcode_image_name}.png");
return $store_image;
この私が、今私は、幅とバーコードの高さを設定したいCodeIgniterのFrameword中にxendライブラリをロードするコード...Zend frameworkバーコードの高さと幅を設定する方法は?
これは私のバーコードが表示されるhttp://stackoverflow.com/questions/40112386/zend-barcode-is-not-rendered-in-codeigniter/40117609#40117609 – user4419336
弟を助けるが、私もそのバーコードのカスタムの高さと幅を設定したい... –