• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Zend_Pdf_Element_Name类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: drawImage

 /**
  * Draw an image at the specified position on the page.
  *
  * @param Zend_Pdf_Image $image
  * @param float $x1
  * @param float $y1
  * @param float $x2
  * @param float $y2
  * @return Zend_Pdf_Page
  */
 public function drawImage(Zend_Pdf_Resource_Image $image, $x1, $y1, $x2, $y2)
 {
     $this->_addProcSet('PDF');
     $imageName = $this->_attachResource('XObject', $image);
     $imageNameObj = new Zend_Pdf_Element_Name($imageName);
     $x1Obj = new Zend_Pdf_Element_Numeric($x1);
     $y1Obj = new Zend_Pdf_Element_Numeric($y1);
     $widthObj = new Zend_Pdf_Element_Numeric($x2 - $x1);
     $heightObj = new Zend_Pdf_Element_Numeric($y2 - $y1);
     $this->_contents .= "q\n" . '1 0 0 1 ' . $x1Obj->toString() . ' ' . $y1Obj->toString() . " cm\n" . $widthObj->toString() . ' 0 0 ' . $heightObj->toString() . " 0 0 cm\n" . $imageNameObj->toString() . " Do\n" . "Q\n";
     return $this;
 }
开发者ID:chaimvaid,项目名称:linet3,代码行数:22,代码来源:Page.php


示例2: readElement

 /**
  * Read elemental object from a PDF stream
  *
  * @return Zend_Pdf_Element
  * @throws Zend_Pdf_Exception
  */
 public function readElement($nextLexeme = null)
 {
     if ($nextLexeme === null) {
         $nextLexeme = $this->readLexeme();
     }
     /**
      * Note: readElement() method is a public method and could be invoked from other classes.
      * If readElement() is used not by Zend_Pdf_StringParser::getObject() method, then we should not care
      * about _elements member management.
      */
     switch ($nextLexeme) {
         case '(':
             return $this->_elements[] = $this->_readString();
         case '<':
             return $this->_elements[] = $this->_readBinaryString();
         case '/':
             return $this->_elements[] = new Zend_Pdf_Element_Name(Zend_Pdf_Element_Name::unescape($this->readLexeme()));
         case '[':
             return $this->_elements[] = $this->_readArray();
         case '<<':
             return $this->_elements[] = $this->_readDictionary();
         case ')':
             // fall through to next case
         // fall through to next case
         case '>':
             // fall through to next case
         // fall through to next case
         case ']':
             // fall through to next case
         // fall through to next case
         case '>>':
             // fall through to next case
         // fall through to next case
         case '{':
             // fall through to next case
         // fall through to next case
         case '}':
             require_once 'Zend/Pdf/Exception.php';
             throw new Zend_Pdf_Exception(sprintf('PDF file syntax error. Offset - 0x%X.', $this->offset));
         default:
             if (strcasecmp($nextLexeme, 'true') == 0) {
                 return $this->_elements[] = new Zend_Pdf_Element_Boolean(true);
             } else {
                 if (strcasecmp($nextLexeme, 'false') == 0) {
                     return $this->_elements[] = new Zend_Pdf_Element_Boolean(false);
                 } else {
                     if (strcasecmp($nextLexeme, 'null') == 0) {
                         return $this->_elements[] = new Zend_Pdf_Element_Null();
                     }
                 }
             }
             $ref = $this->_readReference($nextLexeme);
             if ($ref !== null) {
                 return $this->_elements[] = $ref;
             }
             return $this->_elements[] = $this->_readNumeric($nextLexeme);
     }
 }
开发者ID:travisj,项目名称:zf,代码行数:64,代码来源:StringParser.php


示例3: toString

 /**
  * Return object as string
  *
  * @param Zend_Pdf_Factory $factory
  * @return string
  */
 public function toString($factory = null)
 {
     $outStr = '<<';
     $lastNL = 0;
     foreach ($this->_items as $name => $element) {
         if (!is_object($element)) {
             // require_once 'Zend/Pdf/Exception.php';
             throw new Zend_Pdf_Exception('Wrong data');
         }
         if (strlen($outStr) - $lastNL > 128) {
             $outStr .= "\n";
             $lastNL = strlen($outStr);
         }
         $nameObj = new Zend_Pdf_Element_Name($name);
         $outStr .= $nameObj->toString($factory) . ' ' . $element->toString($factory) . ' ';
     }
     $outStr .= '>>';
     return $outStr;
 }
开发者ID:ngchie,项目名称:system,代码行数:25,代码来源:Dictionary.php


示例4: testUnescape

 public function testUnescape()
 {
     $this->assertEquals(Zend_Pdf_Element_Name::unescape('My#20Cool#20Name#28#29'), 'My Cool Name()');
 }
开发者ID:crodriguezn,项目名称:crossfit-milagro,代码行数:4,代码来源:NameTest.php


示例5: _readElementalObject

 /**
  * Read elemental object from a PDF stream
  *
  * @return Zend_Pdf_Element
  * @throws Zend_Pdf_Exception
  */
 private function _readElementalObject($nextLexeme = null)
 {
     if ($nextLexeme === null) {
         $nextLexeme = $this->_readLexeme();
     }
     switch ($nextLexeme) {
         case '(':
             return $this->_elements[] = $this->_readString();
         case '<':
             return $this->_elements[] = $this->_readBinaryString();
         case '/':
             return $this->_elements[] = new Zend_Pdf_Element_Name(Zend_Pdf_Element_Name::unescape($this->_readLexeme()));
         case '[':
             return $this->_elements[] = $this->_readArray();
         case '<<':
             return $this->_elements[] = $this->_readDictionary();
         case ')':
             // fall through to next case
         // fall through to next case
         case '>':
             // fall through to next case
         // fall through to next case
         case ']':
             // fall through to next case
         // fall through to next case
         case '>>':
             // fall through to next case
         // fall through to next case
         case '{':
             // fall through to next case
         // fall through to next case
         case '}':
             throw new Zend_Pdf_Exception(sprintf('PDF file syntax error. Offset - 0x%X.', $this->_current));
         default:
             if (strcasecmp($nextLexeme, 'true') == 0) {
                 return $this->_elements[] = new Zend_Pdf_Element_Boolean(true);
             } else {
                 if (strcasecmp($nextLexeme, 'false') == 0) {
                     return $this->_elements[] = new Zend_Pdf_Element_Boolean(false);
                 } else {
                     if (strcasecmp($nextLexeme, 'null') == 0) {
                         return $this->_elements[] = new Zend_Pdf_Element_Null();
                     }
                 }
             }
             $ref = $this->_readReference($nextLexeme);
             if ($ref !== null) {
                 return $this->_elements[] = $ref;
             }
             return $this->_elements[] = $this->_readNumeric($nextLexeme);
     }
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:58,代码来源:Parser.php


示例6: toString

 /**
  * Return object as string
  *
  * @param Zend_Pdf_Factory $factory
  * @return string
  */
 public function toString($factory = null)
 {
     $outStr = '<<';
     $lastNL = 0;
     foreach ($this->_items as $name => $element) {
         if (strlen($outStr) - $lastNL > 128) {
             $outStr .= "\n";
             $lastNL = strlen($outStr);
         }
         $nameObj = new Zend_Pdf_Element_Name($name);
         $outStr .= $nameObj->toString($factory) . ' ' . $element->toString($factory) . ' ';
     }
     $outStr .= '>>';
     return $outStr;
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:21,代码来源:Dictionary.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Zend_Pdf_Element_Numeric类代码示例发布时间:2022-05-23
下一篇:
PHP Zend_Pdf_Element_Dictionary类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap