2

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

除了没有渲染背景颜色外,这一切都很好。

我正在使用的 HTML 示例是:

<table style="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>Insured Details</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

4

从记忆中我不得不添加这个来查看背景:

.SetPrintBackground(true)
.SetScreenMediaType(true)
于 2014-11-04T02:58:10.607 回答