当前位置: 首页>>代码示例>>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;未经允许,请勿转载。