當前位置: 首頁>>代碼示例>>PHP>>正文


PHP HTML2PDF::setNewPage方法代碼示例

本文整理匯總了PHP中HTML2PDF::setNewPage方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTML2PDF::setNewPage方法的具體用法?PHP HTML2PDF::setNewPage怎麽用?PHP HTML2PDF::setNewPage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在HTML2PDF的用法示例。


在下文中一共展示了HTML2PDF::setNewPage方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

/**
 * Logiciel : exemple d'utilisation de HTML2PDF
 * 
 * Convertisseur HTML => PDF, utilise fpdf de Olivier PLATHEY 
 * Distribué sous la licence LGPL. 
 *
 * @author		Laurent MINGUET <webmaster@spipu.net>
 */
	require_once(dirname(__FILE__).'/../html2pdf.class.php');

	// récupération de l'html
 	ob_start();
 	include(dirname('__FILE__').'/res/about.php');
	$content = ob_get_clean();

	// initialisation de HTML2PDF
	$html2pdf = new HTML2PDF('P','A4','fr', array(0, 0, 0, 0));
	
	// affichage de la page en entier
	$html2pdf->pdf->SetDisplayMode('fullpage');
	
	// conversion
	$html2pdf->WriteHTML($content, isset($_GET['vuehtml']));
	
	// ajout de l'index (obligatoirement en fin de document)
	$html2pdf->setNewPage();
	$html2pdf->pdf->CreateIndex('Index', 25, 12);
	
	// envoie du PDF
	$html2pdf->Output('about.pdf');
開發者ID:rakotobe,項目名稱:Rakotobe,代碼行數:30,代碼來源:about.php

示例2: createSubHTML

 /**
  * création d'un sous HTML2PDF pour la gestion des tableaux imbriqués
  *
  * @param	HTML2PDF	futur sous HTML2PDF passé en référence pour création
  * @param	integer		marge eventuelle de l'objet si simulation d'un TD
  * @return	null
  */
 function createSubHTML(&$sub_html, $cellmargin = 0)
 {
     // calcul de la largueur
     if ($this->style->value['width']) {
         $marge = $cellmargin * 2;
         $marge += $this->style->value['padding']['l'] + $this->style->value['padding']['r'];
         $marge += $this->style->value['border']['l']['width'] + $this->style->value['border']['r']['width'];
         $marge = $this->pdf->getW() - $this->style->value['width'] + $marge;
     } else {
         $marge = $this->margeLeft + $this->margeRight;
     }
     //clonage
     $sub_html = new HTML2PDF($this->sens, $this->format, $this->langue, array($this->defaultLeft, $this->defaultTop, $this->defaultRight, $this->defaultBottom));
     $sub_html->setIsSubPart();
     $sub_html->setEncoding($this->encoding);
     $sub_html->setTestTdInOnePage($this->testTDin1page);
     $sub_html->setTestIsImage($this->testIsImage);
     $sub_html->setTestIsDeprecated($this->testIsDeprecated);
     $sub_html->setDefaultFont($this->defaultFont);
     $sub_html->style->css = $this->style->css;
     $sub_html->style->css_keys = $this->style->css_keys;
     $sub_html->pdf->cloneFontFrom($this->pdf);
     $sub_html->style->table = $this->style->table;
     $sub_html->style->value = $this->style->value;
     $sub_html->style->setOnlyLeft();
     $sub_html->setNewPage($this->format, $this->sens);
     $sub_html->initSubHtml($marge, $this->page, $this->defLIST);
     // initialisation des positions et autre
     $sub_html->maxX = 0;
     $sub_html->maxY = 0;
     $sub_html->maxH = 0;
     $sub_html->pdf->setXY(0, 0);
 }
開發者ID:NewRoute,項目名稱:lglib,代碼行數:40,代碼來源:html2pdf.class.php


注:本文中的HTML2PDF::setNewPage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。