當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Barcode_Object_ObjectAbstract類代碼示例

本文整理匯總了PHP中Zend_Barcode_Object_ObjectAbstract的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Barcode_Object_ObjectAbstract類的具體用法?PHP Zend_Barcode_Object_ObjectAbstract怎麽用?PHP Zend_Barcode_Object_ObjectAbstract使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Zend_Barcode_Object_ObjectAbstract類的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testStaticFontAsNumber

 public function testStaticFontAsNumber()
 {
     for ($i = 1; $i < 5; $i++) {
         Zend_Barcode_Object_ObjectAbstract::setBarcodeFont($i);
         $this->assertEquals('', $this->_object->getFont());
         $object = $this->_getBarcodeObject();
         $this->assertEquals($i, $object->getFont());
         Zend_Barcode_Object_ObjectAbstract::setBarcodeFont('');
     }
 }
開發者ID:jsnshrmn,項目名稱:Suma,代碼行數:10,代碼來源:TestCommon.php

示例2: setBarcodeFont

 /**
  * Proxy for setBarcodeFont of Zend_Barcode_Object
  * @param string $font
  * @eturn void
  */
 public static function setBarcodeFont($font)
 {
     // require_once 'Zend/Barcode/Object/ObjectAbstract.php';
     Zend_Barcode_Object_ObjectAbstract::setBarcodeFont($font);
 }
開發者ID:tunandras,項目名稱:webtrees,代碼行數:10,代碼來源:Barcode.php

示例3: setBarcodeFont

 /**
  * Proxy for setBarcodeFont of Zend_Barcode_Object
  * @param string $font
  * @eturn void
  */
 public static function setBarcodeFont($font)
 {
     require_once APPPATH . 'libraries/Zend/Barcode/Object/ObjectAbstract.php';
     Zend_Barcode_Object_ObjectAbstract::setBarcodeFont($font);
 }
開發者ID:DeRossi,項目名稱:Training_CI,代碼行數:10,代碼來源:Barcode.php

示例4: setBarcodeFont

 /**
  * Proxy for setBarcodeFont of Zend_Barcode_Object
  * @param string $font
  * @eturn void
  */
 public static function setBarcodeFont($font)
 {
     require_once PHP_LIBRARY_PATH . 'Zend/Barcode/Object/ObjectAbstract.php';
     Zend_Barcode_Object_ObjectAbstract::setBarcodeFont($font);
 }
開發者ID:netixx,項目名稱:Stock,代碼行數:10,代碼來源:Barcode.php

示例5: _drawInstructionList

 /**
  * Sub process to draw the barcode instructions
  * Needed by the automatic error rendering
  */
 private function _drawInstructionList()
 {
     $instructionList = $this->_barcode->draw();
     foreach ($instructionList as $instruction) {
         switch ($instruction['type']) {
             case 'polygon':
                 $this->_drawPolygon(
                     $instruction['points'],
                     $instruction['color'],
                     $instruction['filled']
                 );
                 break;
             case 'text': //$text, $size, $position, $font, $color, $alignment = 'center', $orientation = 0)
                 $this->_drawText(
                     $instruction['text'],
                     $instruction['size'],
                     $instruction['position'],
                     $instruction['font'],
                     $instruction['color'],
                     $instruction['alignment'],
                     $instruction['orientation']
                 );
                 break;
             default:
                 /**
                  * @see Zend_Barcode_Renderer_Exception
                  */
                 require_once 'Zend/Barcode/Renderer/Exception.php';
                 throw new Zend_Barcode_Renderer_Exception(
                     'Unkown drawing command'
                 );
         }
     }
 }
開發者ID:nhp,項目名稱:shopware-4,代碼行數:38,代碼來源:RendererAbstract.php

示例6: getTextToDisplay

 /**
  * Retrieve text to display
  * @return string
  */
 public function getTextToDisplay()
 {
     $text = parent::getTextToDisplay();
     if (substr($text, 0, 1) != '*' && substr($text, -1) != '*') {
         return '*' . $text . '*';
     } else {
         return $text;
     }
 }
開發者ID:brianbui171,項目名稱:website_zend_1.11,代碼行數:13,代碼來源:Code39.php

示例7: _drawText

 /**
  * Partial function to draw text
  * @return void
  */
 protected function _drawText()
 {
     if (get_class($this) == 'Zend_Barcode_Object_Ean13') {
         $this->_drawEan13Text();
     } else {
         parent::_drawText();
     }
 }
開發者ID:Nerutiz,項目名稱:trades,代碼行數:12,代碼來源:Ean13.php

示例8: setBarcodeFont

 /**
  * Set the font for all instances of barcode
  * @param string $font
  * @return void
  */
 public static function setBarcodeFont($font)
 {
     if (is_string($font) || is_int($font) && $font >= 1 && $font <= 5) {
         self::$_staticFont = $font;
     }
 }
開發者ID:vicfryzel,項目名稱:zf,代碼行數:11,代碼來源:ObjectAbstract.php


注:本文中的Zend_Barcode_Object_ObjectAbstract類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。