如何在使用Pechkin生成的PDF中做分页符

本文关键字:PDF 分页 Pechkin | 更新日期: 2023-09-27 18:19:21

我正在使用pechkin dll生成一个基于HTML的PDF文件。

这些都工作得很好,除了我需要在某些地方添加分页符,我不知道怎么做。

我认为使用css分页符之前,但这似乎不起作用。

我使用的HTML的一个例子是:
<table style="border-top: 0px solid black; border-bottom: 2px solid black; height: 30px; width: 800px;" border="0" cellspacing="0" cellpadding="0">
    <tbody>
        <tr>
            <td style="width: 200px;"><strong>Recommendation</strong></td>
            <td style="width: 600px;">[6060:Builder Recommendation]</td>
        </tr>
    </tbody>
</table>
<table style="page-break-before: always;border-top: 0px solid black; border-bottom: 2px solid black; background-color: #99ccff; height: 30px; width: 800px;" border="0" cellspacing="0" cellpadding="0">
    <tbody>
        <tr>
            <td><strong>Summary of Actions</strong></td>
        </tr>
    </tbody>
</table>
我用来生成PDF的代码如下:
Dim buf As Byte() = Pechkin.Factory.Create(New GlobalConfig().SetMargins(New Margins(20, 20, 20, 20))
    .SetDocumentTitle("").SetCopyCount(1).SetImageQuality(100)
    .SetLosslessCompression(True)
    .SetMaxImageDpi(300)
    .SetOutlineGeneration(True)
    .SetOutputDpi(1200)
    .SetPaperOrientation(True) 
    .SetPaperSize(PaperKind.A4) 
    .SetImageQuality(100) 
    .SetPaperOrientation(False))
    .Convert(New ObjectConfig()
        .SetPrintBackground(True)
        .SetAllowLocalContent(True), strHTML)
Return buf

任何想法?

如何在使用Pechkin生成的PDF中做分页符

在表前添加一个div

<div style='page-break-after:always'></div>