本文整理汇总了PHP中Zend_Barcode类的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Barcode类的具体用法?PHP Zend_Barcode怎么用?PHP Zend_Barcode使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Zend_Barcode类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: save_barcode
public function save_barcode($text = NULL, $bcs = 'code39', $height = 56, $stext = 1, $width = 256)
{
$drawText = $stext != 1 ? FALSE : TRUE;
$this->load->library('zend');
$this->zend->load('Zend/Barcode');
$barcodeOptions = array('text' => $text, 'barHeight' => $height, 'drawText' => $drawText);
$rendererOptions = array('imageType' => 'png', 'horizontalPosition' => 'center', 'verticalPosition' => 'middle');
//'width' => $width
$image = Zend_Barcode::draw($bcs, 'image', $barcodeOptions, $rendererOptions);
//header ('Content-type: image/png');
if (imagepng($image, 'assets/uploads/barcode' . $this->session->userdata('user_id') . '.png')) {
imagedestroy($image);
$bc = file_get_contents('assets/uploads/barcode' . $this->session->userdata('user_id') . '.png');
$bcimage = base64_encode($bc);
return $bcimage;
}
return FALSE;
}
示例2: set_barcode
private function set_barcode($code)
{
$this->load->library('Zend');
$this->zend->load('Zend/Barcode');
//generate barcode
Zend_Barcode::render('code128', 'image', array('text' => $code), array());
}
示例3: zend
public function zend()
{
$this->load->library('library_zend');
$test = Zend_Barcode::draw('ean8', 'image', array('text' => 'abc123'), array());
//var_dump($test);
imagejpeg($test, 'temp/' . uniqid() . '.jpg', 100);
}
示例4: getBarcodeImgSource
public function getBarcodeImgSource()
{
$type = "code128";
$orderId = $this->getOrder()->getIncrementId();
$barcodeOptions = array('text' => $orderId, 'fontSize' => "14", 'withQuietZones' => true);
$rendererOptions = array();
$imageResource = Zend_Barcode::factory($type, 'image', $barcodeOptions, $rendererOptions);
return $imageResource;
}
示例5: set_barcode
function set_barcode($code)
{
//load library
$this->load->library("zend");
//load in folder Zend
$this->zend->load('Zend/Barcode');
//generate barcode
Zend_Barcode::render('code128', 'image', array('text' => $code), array());
}
示例6: set_bar
private function set_bar($text)
{
$this->load->library('zend');
$this->zend->load('Zend/Barcode');
/*$barcodeOptions = array('text' => $text);
$rendererOptions = array();
Zend_Barcode::factory('code39', 'image', $barcodeOptions, $rendererOptions)->render();*/
Zend_Barcode::render('code128', 'image', array('text' => $text), array());
}
示例7: barcode
public function barcode()
{
$code = $this->uri->segment(3, 0);
//load library
//load in folder Zend
$this->zend->load('Zend/Barcode');
//generate barcode
$barcode = Zend_Barcode::render('code128', 'image', array('text' => $code), array());
}
示例8: barcode
private function barcode()
{
$code = $this->uri->segment(3, 0);
//load library
$this->load->library('zend');
//load in folder Zend
$this->zend->load('Zend/Barcode');
//generate barcode
Zend_Barcode::render('code39', 'image', array('text' => $code), array());
}
示例9: generateBarcodeAction
public function generateBarcodeAction()
{
$product_code = $this->getRequest()->getParam('product_code');
header('Content-type: image/png');
$this->_helper->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$barcodeOptions = array('text' => "{$product_code}", 'barHeight' => 40);
$rendererOptions = array();
$renderer = Zend_Barcode::factory('code128', 'image', $barcodeOptions, $rendererOptions)->render();
}
示例10: barcodeAction
/**
* This can be used to generate barcodes, use the action
*
* /openrosa/barcode/code/<tokenid>
*
* example:
* /openrosa/barocde/code/22pq-grkq
*
* The image will be a png
*/
public function barcodeAction()
{
$code = $this->getRequest()->getParam('code', 'empty');
\Zend_Layout::getMvcInstance()->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$barcodeOptions = array('text' => $code);
$rendererOptions = array();
$barcode = \Zend_Barcode::render('code128', 'image', $barcodeOptions, $rendererOptions);
$barcode->render();
}
示例11: barcode_generate
function barcode_generate($kode)
{
$houseno = $this->post('houseno');
//$height =25;//tinggi barcode
//$width = 3; //ketebalan barcode
$this->load->library('zend');
$this->zend->load('Zend/Barcode');
$barcodeOPT = array('text' => $kode, 'barHeight' => $height, 'factor' => $width);
$renderOPT = array();
$render = Zend_Barcode::factory('code128', 'image', $barcodeOPT, $renderOPT)->render();
}
示例12: barcode
function barcode($code)
{
// We load her library's reading Zend.php file that contains the loader
// For existing files in the folder Zend
$this->load->library('zend');
// Load that is in a folder Zend
$this->zend->load('Zend/Barcode');
// Generate barcodenya
// $ Code = 12345abc;
Zend_Barcode::render('code128', 'image', array('text' => $code), array());
}
示例13: genBarcode
public function genBarcode($txt = '', $devMode = false)
{
$txt = $devMode ? 'Test Generate Barcode' : $txt;
$this->CI->load->library('zend');
$this->CI->zend->load('Zend/Barcode');
$barcodeOption = array('text' => $txt, 'barHeight' => 30, 'font' => 2);
$renderOption = array('');
$render = Zend_Barcode::render('code128', 'image', $barcodeOption, $renderOption);
return $render;
//exit;
}
示例14: testDrawWithExistantResourceReturnResource
public function testDrawWithExistantResourceReturnResource()
{
Zend_Barcode::setBarcodeFont(dirname(__FILE__) . '/../Object/_fonts/Vera.ttf');
$barcode = new Zend_Barcode_Object_Code39(array('text' => '0123456789'));
$this->_renderer->setBarcode($barcode);
$pdfResource = new Zend_Pdf();
$this->_renderer->setResource($pdfResource);
$resource = $this->_renderer->draw();
$this->assertTrue($resource instanceof Zend_Pdf);
$this->assertSame($resource, $pdfResource);
Zend_Barcode::setBarcodeFont('');
}
示例15: set_barcode
private function set_barcode($code)
{
//load library
$this->load->library('zend');
//load in folder Zend
$this->zend->load('Zend/Barcode');
//generate barcode
//Zend_Barcode::render('code128', 'image', array('text'=>$code), array());
$barcodeOptions = array('text' => $code, 'barHeight' => 20, 'factor' => 1);
$rendererOptions = array();
$renderer = Zend_Barcode::factory('code128', 'image', $barcodeOptions, $rendererOptions)->render();
}