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


PHP FPDF::_putcatalog方法代码示例

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


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

示例1:

 function _putcatalog()
 {
     parent::_putcatalog();
     if (is_int(strpos($this->DisplayPreferences, 'FullScreen'))) {
         $this->_out('/PageMode /FullScreen');
     }
     if ($this->DisplayPreferences) {
         $this->_out('/ViewerPreferences<<');
         if (is_int(strpos($this->DisplayPreferences, 'HideMenubar'))) {
             $this->_out('/HideMenubar true');
         }
         if (is_int(strpos($this->DisplayPreferences, 'HideToolbar'))) {
             $this->_out('/HideToolbar true');
         }
         if (is_int(strpos($this->DisplayPreferences, 'HideWindowUI'))) {
             $this->_out('/HideWindowUI true');
         }
         if (is_int(strpos($this->DisplayPreferences, 'DisplayDocTitle'))) {
             $this->_out('/DisplayDocTitle true');
         }
         if (is_int(strpos($this->DisplayPreferences, 'CenterWindow'))) {
             $this->_out('/CenterWindow true');
         }
         if (is_int(strpos($this->DisplayPreferences, 'FitWindow'))) {
             $this->_out('/FitWindow true');
         }
         $this->_out('>>');
     }
 }
开发者ID:rohmad-st,项目名称:fpdf,代码行数:29,代码来源:viewpref.php

示例2:

 function _putcatalog()
 {
     parent::_putcatalog();
     if (!empty($this->javascript)) {
         $this->_out('/Names <</JavaScript ' . $this->n_js . ' 0 R>>');
     }
 }
开发者ID:rohmad-st,项目名称:fpdf,代码行数:7,代码来源:pdf_js.php

示例3:

 function _putcatalog()
 {
     parent::_putcatalog();
     if (count($this->outlines) > 0) {
         $this->_out('/Outlines ' . $this->OutlineRoot . ' 0 R');
         $this->_out('/PageMode /UseOutlines');
     }
 }
开发者ID:roquebrasilia,项目名称:sgdoc-codigo,代码行数:8,代码来源:PDF_Bookmark.php

示例4:

 function _putcatalog()
 {
     parent::_putcatalog();
     $p = $this->n_ocg_print . ' 0 R';
     $v = $this->n_ocg_view . ' 0 R';
     $as = "<</Event /Print /OCGs [{$p} {$v}] /Category [/Print]>> <</Event /View /OCGs [{$p} {$v}] /Category [/View]>>";
     $this->_out("/OCProperties <</OCGs [{$p} {$v}] /D <</ON [{$p}] /OFF [{$v}] /AS [{$as}]>>>>");
 }
开发者ID:rohmad-st,项目名称:fpdf,代码行数:8,代码来源:visibility.php

示例5:

 function _putcatalog()
 {
     parent::_putcatalog();
     // Disable the page scaling option in the printing dialog
     $this->_out('/ViewerPreferences <</PrintScaling /None>>');
 }
开发者ID:fachrulhasan,项目名称:openemr,代码行数:6,代码来源:PDF_Label.php

示例6:

	function _putcatalog() {
		parent::_putcatalog();
		if (isset($this->javascript)) {
			$this->_out('/Names <</JavaScript '.($this->n_js).' 0 R>>');
		}
	}
开发者ID:rusli-nasir,项目名称:hospitalPhp,代码行数:6,代码来源:fpdf_js.php

示例7:

 function _putcatalog()
 {
     parent::_putcatalog();
     if (isset($this->javascript)) {
         $this->_out('/Names <</JavaScript ' . $this->n_js . ' 0 R>>');
     }
     if (count($this->outlines) > 0) {
         $this->_out('/Outlines ' . $this->OutlineRoot . ' 0 R');
         $this->_out('/PageMode /UseOutlines');
     }
 }
开发者ID:palmic,项目名称:lbox,代码行数:11,代码来源:class.PDML.php

示例8: _putcatalog

 public function _putcatalog()
 {
     parent::_putcatalog();
     if (count($this->pdf_bookmarks) > 0) {
         $this->_out('/Outlines ' . $this->pdf_bookmarks_outline_object_n . ' 0 R');
         $this->_out('/PageMode /UseOutlines');
     }
 }
开发者ID:rkingsbury,项目名称:phoronix-test-suite,代码行数:8,代码来源:pts_pdf_template.php


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