本文整理匯總了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;
}