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


PHP Barcode::setBarcodeFont方法代码示例

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


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

示例1: testNoFontWithOrientation

 public function testNoFontWithOrientation()
 {
     $this->setExpectedException('\\Zend\\Barcode\\Renderer\\Exception\\ExceptionInterface');
     Barcode\Barcode::setBarcodeFont(null);
     $barcode = new Object\Code39(array('text' => '0123456789'));
     $barcode->setOrientation(1);
     $this->renderer->setBarcode($barcode);
     $this->renderer->draw();
 }
开发者ID:haoyanfei,项目名称:zf2,代码行数:9,代码来源:ImageTest.php

示例2: tearDown

 public function tearDown()
 {
     Barcode\Barcode::setBarcodeFont(null);
     if (!empty($this->originaltimezone)) {
         date_default_timezone_set($this->originaltimezone);
     }
 }
开发者ID:rcastardo,项目名称:zf2,代码行数:7,代码来源:TestCommon.php

示例3: testStaticFontAsNumber

 public function testStaticFontAsNumber()
 {
     for ($i = 1; $i < 5; $i++) {
         Barcode\Barcode::setBarcodeFont($i);
         $this->assertEquals('', $this->_object->getFont());
         $object = $this->_getBarcodeObject();
         $this->assertEquals($i, $object->getFont());
         Barcode\Barcode::setBarcodeFont('');
     }
 }
开发者ID:stunti,项目名称:zf2,代码行数:10,代码来源:TestCommon.php

示例4: testDrawWithExistantResourceReturnResource

 public function testDrawWithExistantResourceReturnResource()
 {
     Barcode\Barcode::setBarcodeFont(__DIR__ . '/../Object/_fonts/Vera.ttf');
     $barcode = new Object\Code39(array('text' => '0123456789'));
     $this->renderer->setBarcode($barcode);
     $pdfResource = new Pdf\PdfDocument();
     $this->renderer->setResource($pdfResource);
     $resource = $this->renderer->draw();
     $this->assertTrue($resource instanceof Pdf\PdfDocument);
     $this->assertSame($resource, $pdfResource);
     Barcode\Barcode::setBarcodeFont('');
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:12,代码来源:PdfTest.php

示例5: testDrawWithExistantResourceReturnResource

 public function testDrawWithExistantResourceReturnResource()
 {
     Barcode\Barcode::setBarcodeFont(__DIR__ . '/../Object/_fonts/Vera.ttf');
     $barcode = new 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);
     Barcode\Barcode::setBarcodeFont('');
 }
开发者ID:heiglandreas,项目名称:zf2,代码行数:18,代码来源:SvgTest.php

示例6: testProxyBarcodeObjectFont

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

示例7: tearDown

 public function tearDown()
 {
     Barcode\Barcode::setBarcodeFont(null);
 }
开发者ID:niallmccrudden,项目名称:zf2,代码行数:4,代码来源:TestCommon.php

示例8: tearDown

 public function tearDown()
 {
     Barcode\Barcode::setBarcodeFont(null);
     date_default_timezone_set($this->_originaltimezone);
 }
开发者ID:alab1001101,项目名称:zf2,代码行数:5,代码来源:TestCommon.php

示例9: testNoFontWithOrientation

 /**
  * @expectedException \Zend\Barcode\Renderer\Exception
  */
 public function testNoFontWithOrientation()
 {
     Barcode\Barcode::setBarcodeFont(null);
     $barcode = new Object\Code39(array('text' => '0123456789'));
     $barcode->setOrientation(1);
     $this->_renderer->setBarcode($barcode);
     $this->_renderer->draw();
 }
开发者ID:stunti,项目名称:zf2,代码行数:11,代码来源:ImageTest.php


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