本文整理汇总了PHP中HTML2PDF::createIndex方法的典型用法代码示例。如果您正苦于以下问题:PHP HTML2PDF::createIndex方法的具体用法?PHP HTML2PDF::createIndex怎么用?PHP HTML2PDF::createIndex使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HTML2PDF
的用法示例。
在下文中一共展示了HTML2PDF::createIndex方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dirname
<?php
/**
* Logiciel : exemple d'utilisation de HTML2PDF
*
* Convertisseur HTML => PDF
* Distribué sous la licence LGPL.
*
* @author Laurent MINGUET <webmaster@html2pdf.fr>
*/
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 génération)
$html2pdf->createIndex('Sommaire', 30, 12, false, true, 2);
// envoie du PDF
$html2pdf->Output('about.pdf');
示例2: dirname
intro au chapitre 3
<bookmark title="Chapitre 3.1" level="1" ></bookmark><h2>Chapitre 3.1</h2>
<div class="niveau">
Contenu du chapitre 3.1
</div>
<bookmark title="Chapitre 3.2" level="1" ></bookmark><h2>Chapitre 3.2</h2>
<div class="niveau">
intro au chapitre 3.2
<bookmark title="Chapitre 3.2.1" level="2" ></bookmark><h3>Chapitre 3.2.1</h3>
<div class="niveau">
Contenu du chapitre 3.2.1
</div>
<bookmark title="Chapitre 3.2.2" level="2" ></bookmark><h3>Chapitre 3.2.2</h3>
<div class="niveau">
Contenu du chapitre 3.2.2
</div>
</div>
</div>
</page>
<?php
$content_html = ob_get_clean();
// initialisation de HTML2PDF
require_once dirname(__FILE__) . '/../html2pdf.class.php';
try {
$html2pdf = new HTML2PDF('P', 'A4', 'fr', false, 'ISO-8859-15', array(0, 0, 0, 0));
$html2pdf->writeHTML($content_html, isset($_GET['vuehtml']));
$html2pdf->createIndex('Sommaire', 25, 12, false, true, 1);
$html2pdf->Output('bookmark.pdf');
} catch (HTML2PDF_exception $e) {
echo $e;
}