1

pechkin dllを使用して、HTMLに基づいてPDFファイルを生成しています。

特定の場所に改ページを追加する必要があり、その方法がわからないことを除いて、これはすべてうまく機能しています。

css page-break-before を使用すると思いましたが、うまくいかないようです。

私が使用している 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

何か案は?

4

1 に答える 1

9

テーブルの前に div を追加します。

<div style='page-break-after:always'></div>
于 2014-11-04T03:02:57.680 に答える