當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。