当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Barcode::setBarcodeFont方法代码示例

本文整理汇总了PHP中Zend_Barcode::setBarcodeFont方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Barcode::setBarcodeFont方法的具体用法?PHP Zend_Barcode::setBarcodeFont怎么用?PHP Zend_Barcode::setBarcodeFont使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Barcode的用法示例。


在下文中一共展示了Zend_Barcode::setBarcodeFont方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: 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('');
 }
开发者ID:jsnshrmn,项目名称:Suma,代码行数:12,代码来源:PdfTest.php

示例2: 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);
     $svgResource = new DOMDocument();
     $rootElement = $svgResource->createElement('svg');
     $rootElement->setAttribute('xmlns', "http://www.w3.org/2000/svg");
     $rootElement->setAttribute('version', '1.1');
     $rootElement->setAttribute('width', 500);
     $rootElement->setAttribute('height', 300);
     $svgResource->appendChild($rootElement);
     $this->_renderer->setResource($svgResource);
     $resource = $this->_renderer->draw();
     $this->assertTrue($resource instanceof DOMDocument);
     $this->assertSame($resource, $svgResource);
     Zend_Barcode::setBarcodeFont('');
 }
开发者ID:netvlies,项目名称:zf,代码行数:18,代码来源:SvgTest.php

示例3: testProxyBarcodeObjectFont

 public function testProxyBarcodeObjectFont()
 {
     Zend_Barcode::setBarcodeFont('my_font.ttf');
     $barcode = new Zend_Barcode_Object_Code25();
     $this->assertSame('my_font.ttf', $barcode->getFont());
     Zend_Barcode::setBarcodeFont('');
 }
开发者ID:omusico,项目名称:logica,代码行数:7,代码来源:FactoryTest.php

示例4: testNoFontWithOrientation

 /**
  * @expectedException Zend_Barcode_Renderer_Exception
  */
 public function testNoFontWithOrientation()
 {
     Zend_Barcode::setBarcodeFont('');
     $barcode = new Zend_Barcode_Object_Code39(array('text' => '0123456789'));
     $barcode->setOrientation(1);
     $this->_renderer->setBarcode($barcode);
     $this->_renderer->draw();
 }
开发者ID:omusico,项目名称:logica,代码行数:11,代码来源:ImageTest.php

示例5: tearDown

 public function tearDown()
 {
     Zend_Barcode::setBarcodeFont('');
 }
开发者ID:vicfryzel,项目名称:zf,代码行数:4,代码来源:TestCommon.php


注:本文中的Zend_Barcode::setBarcodeFont方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。