在Pechkin中不渲染的背景颜色生成PDF

时间:2014-08-25 00:32:17

标签: c# .net pdf-generation pechkin tuespechkin

我正在使用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

我在网上看到的文章似乎表明我的代码应该可以正常工作,但事实并非如此。

1 个答案:

答案 0 :(得分:4)

从内存中我必须添加它才能看到背景:

.SetPrintBackground(true)
.SetScreenMediaType(true)