gpt4 book ai didi

python - 如何指定 html2pdf 在呈现 pdf 时使用的页眉/页脚?

转载 作者:行者123 更新时间:2023-11-28 21:59:43 24 4
gpt4 key购买 nike

我正在使用 html2pdf python 库,并且想定义一个页眉和一个页脚以应用于每个页面(包括有趣的东西,例如页脚的页数)。使用 html2pdf 指定页眉/页脚最方便的方法是什么?

最佳答案

看看这是不是 friend 需要的。页眉和页脚是固定的,并告知页数。

<?php
/**
* HTML2PDF Librairy - example
*
* HTML => PDF convertor
* distributed under the LGPL License
*
* @author Laurent MINGUET <webmaster@html2pdf.fr>
*
* isset($_GET['vuehtml']) is not mandatory
* it allow to display the result in the HTML format
*/

ob_start();

// HTML template begin (no output)

?>
<style type="text/css">
<!--
table.page_header {width: 100%; border: none; background-color: #DDDDFF; border-bottom: solid 1mm #AAAADD; padding: 2mm }
table.page_footer {width: 100%; border: none; background-color: #DDDDFF; border-top: solid 1mm #AAAADD; padding: 2mm}

div.niveau
{
padding-left: 5mm;
}
-->
</style>
<page backtop="14mm" backbottom="14mm" backleft="10mm" backright="10mm" style="font-size: 12pt">
<page_header>
<table class="page_header">
<tr>
<td style="width: 100%; text-align: left;">
Exemple d'utilisation des bookmarks
</td>
</tr>
</table>
</page_header>
<page_footer>
<table class="page_footer">
<tr>
<td style="width: 100%; text-align: right">
page [[page_cu]]/[[page_nb]]
</td>
</tr>
</table>
</page_footer>
</page>
<?php

// HTML end
// Getting the html which was not displayed into $content var
$content = ob_get_clean();

require_once(dirname(__FILE__).'/../html2pdf.class.php');
try
{
$html2pdf = new HTML2PDF('P', 'A4', 'fr', true, 'UTF-8', 0);
$html2pdf->writeHTML($content, isset($_GET['vuehtml']));
$html2pdf->createIndex('Sommaire', 25, 12, false, true, 1);
$html2pdf->Output('bookmark.pdf');
}
catch(HTML2PDF_exception $e) {
echo $e;
exit;
}

关于python - 如何指定 html2pdf 在呈现 pdf 时使用的页眉/页脚?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16197322/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com